nim-serialization/serialization.nimble

17 lines
463 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"]
2018-12-18 01:00:00 +02:00
requires "nim >= 0.19.0",
"faststreams",
2019-07-07 11:50:26 +02:00
"stew"
task test, "Run all tests":
exec "nim c -r --threads:off tests/test_all"
exec "nim c -r --threads:on tests/test_all"