Skip to content

Commit

Permalink
update dependancy
Browse files Browse the repository at this point in the history
  • Loading branch information
bufrr committed Dec 3, 2024
1 parent e5032a8 commit 7f8f182
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"

[dependencies]
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0.24"
thiserror = "2.0.3"
serde_json = "1.0.64"
log = "0.4.14"

Expand Down
6 changes: 3 additions & 3 deletions consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ authors = ["Alberto Sonnino <asonnino@fb.com>"]
edition = "2018"

[dependencies]
tokio = { version = "1.5.0", features = ["sync"] }
log = "0.4.14"
tokio = { version = "1.41", features = ["sync"] }
log = "0.4.22"

crypto = { path = "../crypto" }
config = { path = "../config" }
primary = { path = "../primary" }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.5"

[features]
benchmark = []
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
publish = false

[dependencies]
tokio = { version = "1.5.0", features = ["sync", "rt", "macros"] }
tokio = { version = "1.41", features = ["sync", "rt", "macros"] }
ed25519-dalek = { version = "1.0.1", features = ["batch"] }
serde = { version = "1.0", features = ["derive"] }
rand = "0.7.3"
Expand Down
8 changes: 4 additions & 4 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ edition = "2018"
publish = false

[dependencies]
tokio = { version = "1.5.0", features = ["rt", "net", "sync", "macros", "time"] }
tokio-util = { version = "0.6.6", features = ["codec"] }
thiserror = "1.0.24"
tokio = { version = "1.41", features = ["rt", "net", "sync", "macros", "time"] }
tokio-util = { version = "0.7.12", features = ["codec"] }
thiserror = "2.0.3"
bytes = "1.0.1"
log = "0.4.14"
futures = "0.3.14"
rand = { version = "0.7.3", features = ["small_rng"] }
rand = { version = "0.8.5", features = ["small_rng"] }
async-trait = "0.1.50"

[dev-dependencies]
Expand Down

0 comments on commit 7f8f182

Please sign in to comment.