nim-libp2p/libp2p.nimble
cheatfate 3b554d0f51 Add LibP2P varint and tests.
Generalize Varint.
2018-11-20 23:39:35 +02:00

15 lines
414 B
Nim

mode = ScriptMode.Verbose
packageName = "libp2p"
version = "0.0.1"
author = "Status Research & Development GmbH"
description = "LibP2P implementation"
license = "MIT"
skipDirs = @["tests", "Nim"]
requires "nim > 0.18.0",
"https://github.com/status-im/nim-asyncdispatch2"
task test, "Runs the test suite":
exec "nim c -r tests/testvarint"
exec "nim c -r tests/testdaemon"