nim-serialization/serialization.nimble

19 lines
611 B
Plaintext
Raw Normal View History

mode = ScriptMode.Verbose
packageName = "serialization"
version = "0.1.0"
author = "Status Research & Development GmbH"
description = "A modern and extensible serialization framework for Nim"
license = "Apache License 2.0"
skipDirs = @["tests"]
2020-04-24 06:56:54 +00:00
requires "nim >= 1.2.0",
2018-12-17 23:00:00 +00:00
"faststreams",
2021-08-16 06:52:41 +00:00
"unittest2",
2019-07-07 09:50:26 +00:00
"stew"
task test, "Run all tests":
2021-12-05 14:52:47 +00:00
let common_args = "c -r -f --hints:off --skipParentCfg --styleCheck:usages --styleCheck:error"
exec "nim " & common_args & " --threads:off tests/test_all"
exec "nim " & common_args & " --threads:on tests/test_all"