nim-rlp/rlp.nimble

21 lines
467 B
Plaintext
Raw Normal View History

2018-01-25 19:22:13 +00:00
mode = ScriptMode.Verbose
packageName = "rlp"
2018-02-16 15:28:19 +00:00
version = "1.0.1"
2018-01-25 19:22:13 +00:00
author = "Status Research & Development GmbH"
description = "RLP serialization library for Nim"
license = "Apache2"
skipDirs = @["tests"]
2018-02-21 10:27:34 +00:00
requires "nim >= 0.17.0", "https://github.com/status-im/nim-ranges >= 0.0.1"
2018-01-25 19:22:13 +00:00
proc configForTests() =
--hints: off
--debuginfo
--path: "."
--run
task test, "run CPU tests":
configForTests()
setCommand "c", "tests/all.nim"