Use tokio 1 in deps (#842)
This commit is contained in:
parent
ad88d2bc0c
commit
5a85281ec0
|
@ -45,7 +45,7 @@ cryptarchia-engine = { path = "../../consensus/cryptarchia-engine" }
|
|||
nomos-ledger = { path = "../../ledger/nomos-ledger" }
|
||||
rand_chacha = "0.3"
|
||||
cl = { path = "../../nomos-core/cl" }
|
||||
tokio = { version = "1.24", features = ["sync"] }
|
||||
tokio = { version = "1", features = ["sync"] }
|
||||
serde_json = "1.0"
|
||||
serde_yaml = "0.9"
|
||||
color-eyre = "0.6.0"
|
||||
|
|
|
@ -21,12 +21,12 @@ log = "0.4"
|
|||
serde = "1.0"
|
||||
rand = "0.8"
|
||||
rand_chacha = "0.3"
|
||||
tokio = { version = "1.39" }
|
||||
tokio = { version = "1" }
|
||||
tokio-stream = "0.1"
|
||||
thiserror = "1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.39", features = ["macros", "rt-multi-thread", "time"] }
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
|
||||
libp2p = { version = "0.53", features = ["ed25519", "ping", "macros", "quic", "tcp", "yamux", "noise"] }
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
|
||||
|
|
|
@ -12,4 +12,4 @@ prost = "0.13.1"
|
|||
prost-build = "0.13.1"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.38.1", features = ["rt", "macros"] }
|
||||
tokio = { version = "1", features = ["rt", "macros"] }
|
||||
|
|
|
@ -13,6 +13,6 @@ nomos-mix-message = { path = "../message" }
|
|||
nomos-mix-queue = { path = "../queue" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.39", features = ["macros", "rt-multi-thread", "time"] }
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
|
||||
libp2p = { version = "0.53", features = ["ed25519", "tokio", "quic"] }
|
||||
tracing-subscriber = "0.3.18"
|
||||
|
|
|
@ -35,7 +35,7 @@ rand = "0.8"
|
|||
serde = { version = "1", features = ["derive"] }
|
||||
subnetworks-assignations = { path = "../../nomos-da/network/subnetworks-assignations" }
|
||||
nomos-da-network-core = { path = "../../nomos-da/network/core" }
|
||||
tokio = { version = "1.33", default-features = false, features = ["sync"] }
|
||||
tokio = { version = "1", default-features = false, features = ["sync"] }
|
||||
|
||||
|
||||
# axum related dependencies
|
||||
|
|
|
@ -17,6 +17,6 @@ overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806"
|
|||
rand = "0.8"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
subnetworks-assignations = { path = "../../../nomos-da/network/subnetworks-assignations" }
|
||||
tokio = "1.40"
|
||||
tokio = "1"
|
||||
thiserror = "1.0"
|
||||
tracing = "0.1"
|
||||
|
|
|
@ -9,6 +9,6 @@ edition = "2021"
|
|||
async-trait = "0.1"
|
||||
async-ctrlc = "1.2"
|
||||
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
||||
tokio = "1.33.0"
|
||||
tokio = "1"
|
||||
log = "0.4.20"
|
||||
futures = "0.3.28"
|
||||
|
|
|
@ -12,7 +12,7 @@ nomos-node = { path = "../../nodes/nomos-node" }
|
|||
rand = "0.8"
|
||||
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
|
||||
tests = { path = "../../tests" }
|
||||
tokio = { version = "1.24", features = ["rt-multi-thread"] }
|
||||
tokio = { version = "1", features = ["rt-multi-thread"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
serde_yaml = "0.9"
|
||||
|
|
Loading…
Reference in New Issue