Use tokio 1 in deps (#842)

This commit is contained in:
Daniel Sanchez 2024-10-22 16:59:42 +02:00 committed by GitHub
parent ad88d2bc0c
commit 5a85281ec0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 9 additions and 9 deletions

View File

@ -45,7 +45,7 @@ cryptarchia-engine = { path = "../../consensus/cryptarchia-engine" }
nomos-ledger = { path = "../../ledger/nomos-ledger" } nomos-ledger = { path = "../../ledger/nomos-ledger" }
rand_chacha = "0.3" rand_chacha = "0.3"
cl = { path = "../../nomos-core/cl" } cl = { path = "../../nomos-core/cl" }
tokio = { version = "1.24", features = ["sync"] } tokio = { version = "1", features = ["sync"] }
serde_json = "1.0" serde_json = "1.0"
serde_yaml = "0.9" serde_yaml = "0.9"
color-eyre = "0.6.0" color-eyre = "0.6.0"

View File

@ -21,12 +21,12 @@ log = "0.4"
serde = "1.0" serde = "1.0"
rand = "0.8" rand = "0.8"
rand_chacha = "0.3" rand_chacha = "0.3"
tokio = { version = "1.39" } tokio = { version = "1" }
tokio-stream = "0.1" tokio-stream = "0.1"
thiserror = "1.0" thiserror = "1.0"
[dev-dependencies] [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"] } libp2p = { version = "0.53", features = ["ed25519", "ping", "macros", "quic", "tcp", "yamux", "noise"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }

View File

@ -12,4 +12,4 @@ prost = "0.13.1"
prost-build = "0.13.1" prost-build = "0.13.1"
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.38.1", features = ["rt", "macros"] } tokio = { version = "1", features = ["rt", "macros"] }

View File

@ -13,6 +13,6 @@ nomos-mix-message = { path = "../message" }
nomos-mix-queue = { path = "../queue" } nomos-mix-queue = { path = "../queue" }
[dev-dependencies] [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"] } libp2p = { version = "0.53", features = ["ed25519", "tokio", "quic"] }
tracing-subscriber = "0.3.18" tracing-subscriber = "0.3.18"

View File

@ -35,7 +35,7 @@ rand = "0.8"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
subnetworks-assignations = { path = "../../nomos-da/network/subnetworks-assignations" } subnetworks-assignations = { path = "../../nomos-da/network/subnetworks-assignations" }
nomos-da-network-core = { path = "../../nomos-da/network/core" } 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 # axum related dependencies

View File

@ -17,6 +17,6 @@ overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806"
rand = "0.8" rand = "0.8"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
subnetworks-assignations = { path = "../../../nomos-da/network/subnetworks-assignations" } subnetworks-assignations = { path = "../../../nomos-da/network/subnetworks-assignations" }
tokio = "1.40" tokio = "1"
thiserror = "1.0" thiserror = "1.0"
tracing = "0.1" tracing = "0.1"

View File

@ -9,6 +9,6 @@ edition = "2021"
async-trait = "0.1" async-trait = "0.1"
async-ctrlc = "1.2" async-ctrlc = "1.2"
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" } overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
tokio = "1.33.0" tokio = "1"
log = "0.4.20" log = "0.4.20"
futures = "0.3.28" futures = "0.3.28"

View File

@ -12,7 +12,7 @@ nomos-node = { path = "../../nodes/nomos-node" }
rand = "0.8" rand = "0.8"
reqwest = { version = "0.11", features = ["json", "rustls-tls"] } reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
tests = { path = "../../tests" } tests = { path = "../../tests" }
tokio = { version = "1.24", features = ["rt-multi-thread"] } tokio = { version = "1", features = ["rt-multi-thread"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
serde_yaml = "0.9" serde_yaml = "0.9"