Asyncdispatch2 rebranding to chronos (#84)
* Asyncdispatch2 rebranding to chronos * nim-eth and nim-chronos part of nimble packages * fix package name
This commit is contained in:
parent
7f1bddb267
commit
11da02c34f
|
@ -13,7 +13,7 @@ bin = @[
|
|||
|
||||
### Dependencies
|
||||
requires "nim >= 0.18.0",
|
||||
"https://github.com/status-im/nim-eth",
|
||||
"eth",
|
||||
"nimcrypto",
|
||||
"https://github.com/status-im/nim-blscurve#master",
|
||||
"ranges",
|
||||
|
@ -21,7 +21,8 @@ requires "nim >= 0.18.0",
|
|||
"confutils",
|
||||
"serialization",
|
||||
"json_serialization",
|
||||
"json_rpc"
|
||||
"json_rpc",
|
||||
"chronos"
|
||||
|
||||
### Helper functions
|
||||
proc test(name: string, defaultLang = "c") =
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import
|
||||
std_shims/[os_shims, objects], net, sequtils, options, tables,
|
||||
asyncdispatch2, chronicles, confutils, eth/[p2p, keys],
|
||||
chronos, chronicles, confutils, eth/[p2p, keys],
|
||||
spec/[datatypes, digest, crypto, beaconstate, helpers, validator], conf, time,
|
||||
state_transition, fork_choice, ssz, beacon_chain_db, validator_pool, extras,
|
||||
mainchain_monitor, sync_protocol, gossipsub_protocol, trusted_state_snapshots,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import
|
||||
tables, sets, macros, base64,
|
||||
asyncdispatch2, nimcrypto/sysrand, chronicles, json_serialization,
|
||||
chronos, nimcrypto/sysrand, chronicles, json_serialization,
|
||||
eth/[p2p, rlp], eth/p2p/[rlpx, peer_pool],
|
||||
spec/[datatypes, crypto]
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import
|
||||
asyncdispatch2, json_rpc/rpcclient,
|
||||
chronos, json_rpc/rpcclient,
|
||||
spec/[datatypes, digest]
|
||||
|
||||
type
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import
|
||||
options,
|
||||
chronicles, eth/[rlp, p2p], asyncdispatch2, ranges/bitranges, eth/p2p/rlpx,
|
||||
chronicles, eth/[rlp, p2p], chronos, ranges/bitranges, eth/p2p/rlpx,
|
||||
spec/[datatypes, crypto, digest]
|
||||
|
||||
type
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import
|
||||
random,
|
||||
asyncdispatch2,
|
||||
chronos,
|
||||
spec/datatypes
|
||||
|
||||
type
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import
|
||||
asyncdispatch2,
|
||||
chronos,
|
||||
spec/[datatypes, crypto, digest, beaconstate], beacon_chain_db, conf
|
||||
|
||||
const
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import
|
||||
os, ospaths, strutils, strformat,
|
||||
asyncdispatch2, nimcrypto, json_serialization, confutils,
|
||||
chronos, nimcrypto, json_serialization, confutils,
|
||||
spec/[datatypes, digest, crypto], conf, randao, time, ssz,
|
||||
../tests/testutil
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import
|
||||
tables, random,
|
||||
asyncdispatch2,
|
||||
chronos,
|
||||
spec/[datatypes, crypto, digest], randao, ssz
|
||||
|
||||
type
|
||||
|
|
Loading…
Reference in New Issue