Prepare for AD2 rebranding to chronos (#225)

* Prepare for AD2 rebranding to chronos - https://github.com/status-im/nim-asyncdispatch2/pull/20

* fix nimble path to chronos

* nim-eth and nim-chronos merged into nimble packages

* fix nimble package name
This commit is contained in:
Mamy Ratsimbazafy 2019-02-06 19:03:36 +01:00 committed by GitHub
parent 4466deff37
commit e1812eb7ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -43,7 +43,7 @@ GITHUB_REPOS := \
status-im/nim-eth \
status-im/nim-byteutils \
status-im/nim-http-utils \
status-im/nim-asyncdispatch2 \
status-im/nim-chronos \
status-im/nim-json-rpc \
status-im/nim-faststreams \
status-im/nim-std-shims \

View File

@ -14,9 +14,9 @@ requires "nim >= 0.19",
"nimcrypto",
"stint",
"json_rpc",
"asyncdispatch2",
"chronos",
"bncurve",
"https://github.com/status-im/nim-eth",
"eth",
"std_shims"
proc buildBinary(name: string, srcDir = ".", lang = "c") =

View File

@ -9,7 +9,7 @@
import
parseopt, strutils, macros, os, times,
asyncdispatch2, eth/[keys, common, p2p], chronicles, nimcrypto/hash,
chronos, eth/[keys, common, p2p], chronicles, nimcrypto/hash,
./db/select_backend,
./vm/interpreter/vm_forks

View File

@ -10,7 +10,7 @@
import
os, strutils, net, eth/keys, db/[storage_types, db_chain, select_backend],
eth/common as eth_common, eth/p2p as eth_p2p,
asyncdispatch2, json_rpc/rpcserver, chronicles,
chronos, json_rpc/rpcserver, chronicles,
eth/p2p/rlpx_protocols/[eth_protocol, les_protocol],
eth/p2p/blockchain_sync,
config, genesis, rpc/[common, p2p, debug, whisper], p2p/chain,