mirror of
https://github.com/codex-storage/nim-json-rpc.git
synced 2025-02-22 07:58:22 +00:00
25 lines
552 B
Nim
25 lines
552 B
Nim
packageName = "eth_rpc"
|
|
version = "0.0.1"
|
|
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",
|
|
"chronicles"
|
|
|
|
proc configForTests() =
|
|
--hints: off
|
|
--debuginfo
|
|
--path: "."
|
|
--run
|
|
--forceBuild
|
|
|
|
task test, "run tests":
|
|
configForTests()
|
|
setCommand "c", "tests/all.nim"
|