nim-json-rpc/json_rpc.nimble
cheatfate 0942b0387d Add RpcHttpServer.
Add RpcHttpClient.
2018-07-14 10:51:54 +03:00

26 lines
609 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",
"https://github.com/status-im/nim-asyncdispatch2",
"https://github.com/status-im/nim-http-utils",
"chronicles"
proc configForTests() =
--hints: off
--debuginfo
--path: "."
--run
--forceBuild
task test, "run tests":
configForTests()
setCommand "c", "tests/all.nim"