mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 14:26:26 +00:00
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
|
### Dependencies
|
||||||
requires "nim >= 0.18.0",
|
requires "nim >= 0.18.0",
|
||||||
"https://github.com/status-im/nim-eth",
|
"eth",
|
||||||
"nimcrypto",
|
"nimcrypto",
|
||||||
"https://github.com/status-im/nim-blscurve#master",
|
"https://github.com/status-im/nim-blscurve#master",
|
||||||
"ranges",
|
"ranges",
|
||||||
@ -21,7 +21,8 @@ requires "nim >= 0.18.0",
|
|||||||
"confutils",
|
"confutils",
|
||||||
"serialization",
|
"serialization",
|
||||||
"json_serialization",
|
"json_serialization",
|
||||||
"json_rpc"
|
"json_rpc",
|
||||||
|
"chronos"
|
||||||
|
|
||||||
### Helper functions
|
### Helper functions
|
||||||
proc test(name: string, defaultLang = "c") =
|
proc test(name: string, defaultLang = "c") =
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import
|
import
|
||||||
std_shims/[os_shims, objects], net, sequtils, options, tables,
|
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,
|
spec/[datatypes, digest, crypto, beaconstate, helpers, validator], conf, time,
|
||||||
state_transition, fork_choice, ssz, beacon_chain_db, validator_pool, extras,
|
state_transition, fork_choice, ssz, beacon_chain_db, validator_pool, extras,
|
||||||
mainchain_monitor, sync_protocol, gossipsub_protocol, trusted_state_snapshots,
|
mainchain_monitor, sync_protocol, gossipsub_protocol, trusted_state_snapshots,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import
|
import
|
||||||
tables, sets, macros, base64,
|
tables, sets, macros, base64,
|
||||||
asyncdispatch2, nimcrypto/sysrand, chronicles, json_serialization,
|
chronos, nimcrypto/sysrand, chronicles, json_serialization,
|
||||||
eth/[p2p, rlp], eth/p2p/[rlpx, peer_pool],
|
eth/[p2p, rlp], eth/p2p/[rlpx, peer_pool],
|
||||||
spec/[datatypes, crypto]
|
spec/[datatypes, crypto]
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import
|
import
|
||||||
asyncdispatch2, json_rpc/rpcclient,
|
chronos, json_rpc/rpcclient,
|
||||||
spec/[datatypes, digest]
|
spec/[datatypes, digest]
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import
|
import
|
||||||
options,
|
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]
|
spec/[datatypes, crypto, digest]
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import
|
import
|
||||||
random,
|
random,
|
||||||
asyncdispatch2,
|
chronos,
|
||||||
spec/datatypes
|
spec/datatypes
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import
|
import
|
||||||
asyncdispatch2,
|
chronos,
|
||||||
spec/[datatypes, crypto, digest, beaconstate], beacon_chain_db, conf
|
spec/[datatypes, crypto, digest, beaconstate], beacon_chain_db, conf
|
||||||
|
|
||||||
const
|
const
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import
|
import
|
||||||
os, ospaths, strutils, strformat,
|
os, ospaths, strutils, strformat,
|
||||||
asyncdispatch2, nimcrypto, json_serialization, confutils,
|
chronos, nimcrypto, json_serialization, confutils,
|
||||||
spec/[datatypes, digest, crypto], conf, randao, time, ssz,
|
spec/[datatypes, digest, crypto], conf, randao, time, ssz,
|
||||||
../tests/testutil
|
../tests/testutil
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import
|
import
|
||||||
tables, random,
|
tables, random,
|
||||||
asyncdispatch2,
|
chronos,
|
||||||
spec/[datatypes, crypto, digest], randao, ssz
|
spec/[datatypes, crypto, digest], randao, ssz
|
||||||
|
|
||||||
type
|
type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user