2018-03-28 00:17:01 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "ethp2p"
|
|
|
|
version = "1.0.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
|
|
|
description = "Ethereum P2P library"
|
|
|
|
license = "MIT"
|
2018-03-28 01:52:53 +00:00
|
|
|
skipDirs = @["tests", "Nim"]
|
2018-03-28 00:17:01 +00:00
|
|
|
|
2018-03-30 14:06:46 +00:00
|
|
|
requires "nim > 0.18.0",
|
2018-04-30 17:40:04 +00:00
|
|
|
"rlp >= 1.0.1",
|
|
|
|
"https://github.com/cheatfate/nimcrypto",
|
|
|
|
"secp256k1 >= 0.1.0",
|
|
|
|
"eth_keys",
|
|
|
|
"ranges",
|
2018-05-08 12:00:32 +00:00
|
|
|
"https://github.com/status-im/nim-stint",
|
|
|
|
"https://github.com/status-im/nim-byteutils"
|
2018-03-28 00:17:01 +00:00
|
|
|
|
2018-05-08 16:02:17 +00:00
|
|
|
proc runTest(name: string, lang = "c") = exec "nim " & lang & " -r tests/" & name
|
2018-03-30 13:56:56 +00:00
|
|
|
|
|
|
|
task test, "Runs the test suite":
|
|
|
|
runTest "testecies"
|
|
|
|
runTest "testauth"
|
2018-04-18 06:33:48 +00:00
|
|
|
runTest "testcrypt"
|
2018-04-30 17:40:04 +00:00
|
|
|
runTest "testenode"
|
2018-05-08 14:11:34 +00:00
|
|
|
runTest "tdiscovery"
|