nim-libp2p/libp2p.nimble

26 lines
717 B
Plaintext
Raw Normal View History

2018-11-19 02:52:11 +00:00
mode = ScriptMode.Verbose
2018-11-19 04:03:23 +00:00
packageName = "libp2p"
2018-11-19 02:52:11 +00:00
version = "0.0.1"
author = "Status Research & Development GmbH"
description = "LibP2P implementation"
license = "MIT"
2018-11-27 12:20:05 +00:00
skipDirs = @["tests", "examples", "Nim"]
2018-11-19 02:52:11 +00:00
2018-11-19 04:39:04 +00:00
requires "nim > 0.18.0",
"nimcrypto",
"chronos",
"secp256k1"
2018-11-19 02:52:11 +00:00
2018-11-19 21:03:50 +00:00
task test, "Runs the test suite":
exec "nim c -r tests/testvarint"
2018-11-27 12:20:05 +00:00
exec "nim c -r tests/testbase58"
exec "nim c -r tests/testbase32"
2018-11-27 12:20:05 +00:00
exec "nim c -r tests/testmultiaddress"
2018-12-05 01:01:00 +00:00
exec "nim c -r tests/testmultihash"
exec "nim c -r tests/testmultibase"
2018-12-16 02:55:02 +00:00
exec "nim c -r tests/testcid"
exec "nim c -r tests/testecnist"
exec "nim c -r tests/testrsa"
exec "nim c -r tests/testdaemon"