mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-10 14:46:03 +00:00
7efa9177df
* extra utilities and tweaks * add atlas lock * update ignores * break build into it's own script * update url rules * base off codexdht's * compile fixes for Nim 1.6.14 * update submodules * convert mapFailure to procs to work around type resolution issues * add toml parser for multiaddress * change error type on keyutils * bump nimbus build to use 1.6.14 * update gitignore * adding new deps submodules * bump nim ci version * even more fixes * more libp2p changes * update keys * fix eventually function * adding coverage test file * move coverage to build.nims * use nimcache/coverage * move libp2p import for tests into helper.nim * remove named bin * bug fixes for networkpeers (from Dmitriy) --------- Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com>
35 lines
895 B
Nim
35 lines
895 B
Nim
version = "0.1.0"
|
|
author = "Codex Team"
|
|
description = "p2p data durability engine"
|
|
license = "MIT"
|
|
binDir = "build"
|
|
srcDir = "."
|
|
installFiles = @["build.nims"]
|
|
|
|
requires "nim >= 1.2.0"
|
|
requires "asynctest >= 0.3.2 & < 0.4.0"
|
|
requires "bearssl >= 0.1.4"
|
|
requires "chronicles >= 0.7.2"
|
|
requires "chronos >= 2.5.2"
|
|
requires "confutils"
|
|
requires "ethers >= 0.5.0 & < 0.6.0"
|
|
requires "libbacktrace"
|
|
requires "libp2p"
|
|
requires "metrics"
|
|
requires "nimcrypto >= 0.4.1"
|
|
requires "nitro >= 0.5.1 & < 0.6.0"
|
|
requires "presto"
|
|
requires "protobuf_serialization >= 0.2.0 & < 0.3.0"
|
|
requires "questionable >= 0.10.6 & < 0.11.0"
|
|
requires "secp256k1"
|
|
requires "stew"
|
|
requires "upraises >= 0.1.0 & < 0.2.0"
|
|
requires "toml_serialization"
|
|
requires "https://github.com/status-im/lrucache.nim#1.2.2"
|
|
requires "leopard >= 0.1.0 & < 0.2.0"
|
|
requires "blscurve"
|
|
requires "libp2pdht"
|
|
requires "eth"
|
|
|
|
include "build.nims"
|