mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 09:26:38 +00:00
20 lines
554 B
Nim
20 lines
554 B
Nim
mode = ScriptMode.Verbose
|
|
|
|
packageName = "faststreams"
|
|
version = "0.2.0"
|
|
author = "Status Research & Development GmbH"
|
|
description = "Nearly zero-overhead input/output streams for Nim"
|
|
license = "Apache License 2.0"
|
|
skipDirs = @["tests"]
|
|
|
|
requires "nim >= 1.2.0",
|
|
"stew",
|
|
"testutils",
|
|
"chronos"
|
|
|
|
task test, "Run all tests":
|
|
exec "nim c -r -d:debug --threads:on tests/all_tests"
|
|
exec "nim c -r -d:release --threads:on tests/all_tests"
|
|
exec "nim c -r -d:danger --threads:on tests/all_tests"
|
|
|