nim-json-rpc/json_rpc.nimble
2019-06-20 18:57:13 +03:00

30 lines
622 B
Nim

packageName = "json_rpc"
version = "0.0.2"
author = "Status Research & Development GmbH"
description = "Ethereum remote procedure calls"
license = "Apache License 2.0"
skipDirs = @["tests"]
### Dependencies
requires "nim >= 0.17.3",
"nimcrypto",
"stint",
"chronos",
"httputils",
"chronicles",
"news",
"chronicles",
"json_serialization"
proc configForTests() =
--hints: off
--debuginfo
--path: "."
--run
--forceBuild
--threads: on
task test, "run tests":
configForTests()
setCommand "c", "tests/all.nim"