2018-11-10 00:14:43 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "serialization"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
2018-11-11 11:40:19 +00:00
|
|
|
description = "A modern and extensible serialization framework for Nim"
|
2018-11-10 00:14:43 +00:00
|
|
|
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",
|
2019-07-07 09:50:26 +00:00
|
|
|
"stew"
|
2020-03-24 14:34:38 +00:00
|
|
|
|
|
|
|
task test, "Run all tests":
|
|
|
|
exec "nim c -r --threads:off tests/test_all"
|
|
|
|
exec "nim c -r --threads:on tests/test_all"
|