fix requires

This commit is contained in:
Jaremy Creechley 2023-07-10 17:50:07 -07:00
parent 64133fc66e
commit 77ec7ba000
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
2 changed files with 15 additions and 14 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ nimcache
tests/testAll
nimble.develop
nimble.paths
nim.cfg

View File

@ -8,20 +8,20 @@ skipDirs = @["tests"]
# Dependencies
requires "nim >= 1.2.0",
"nimcrypto >= 0.5.4 & < 0.6.0",
"bearssl#head",
"chronicles >= 0.10.2 & < 0.11.0",
"chronos >= 3.0.11 & < 3.1.0",
"libp2p#unstable",
"metrics",
"protobufserialization >= 0.2.0 & < 0.3.0",
"secp256k1 >= 0.5.2 & < 0.6.0",
"stew#head",
"stint",
"asynctest >= 0.3.1 & < 0.4.0",
"https://github.com/status-im/nim-datastore#head",
"questionable"
requires "nim >= 1.2.0"
requires "secp256k1#b3f38e2795e805743b299dc5d96d332db375b520" # >= 0.5.2 & < 0.6.0
requires "protobuf_serialization#27b400fdf3bd8ce7120ca66fc1de39d3f1a5804a" # >= 0.2.0 & < 0.3.0
requires "nimcrypto == 0.5.4"
requires "bearssl#head"
requires "chronicles >= 0.10.2 & < 0.11.0"
requires "chronos#1394c9e04957928afc1db33d2e0965cfb677a1e0" # >= 3.0.11 & < 3.1.0
requires "libp2p#unstable"
requires "metrics"
requires "stew#head"
requires "stint"
requires "asynctest >= 0.3.1 & < 0.4.0"
requires "https://github.com/status-im/nim-datastore#head"
requires "questionable"
task testAll, "Run DHT tests":
exec "nim c -r tests/testAll.nim"