nim-faststreams/faststreams.nimble

17 lines
434 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",
2019-07-07 09:44:59 +00:00
"stew"
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"