nim-faststreams/faststreams.nimble

18 lines
454 B
Plaintext
Raw Normal View History

mode = ScriptMode.Verbose
packageName = "faststreams"
version = "0.1.0"
author = "Status Research & Development GmbH"
description = "Nearly zero-overhead input/output streams for Nim"
license = "Apache License 2.0"
skipDirs = @["tests"]
requires "nim >= 0.17.0",
2020-04-13 18:59:34 +00:00
"stew",
"chronos"
2020-03-24 14:29:57 +00:00
task test, "Run all tests":
exec "nim c -r --threads:off tests/all_tests"
exec "nim c -r --threads:on tests/all_tests"