Skip to content
Closed
86 changes: 55 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ crossbeam = "0.8.2"
crossbeam-channel = "0.5.1"
ctrlc = "3.1"
daggy = "0.8.0"
dashmap = "4.0"
dashmap = "6.0"
derive_more = { version = "1", default-features = false }
eaglesong = "0.1"
env_logger = "0.10"
Expand All @@ -213,7 +213,11 @@ fs2 = "0.4.3"
futures = "0.3"
futures-util = "0.3.21"
golomb-coded-set = "0.2.0"
governor = "0.3.1"
governor = { version = "0.10", default-features = false, features = [
"std",
"jitter",
"quanta",
] }
hex = "0.4"
hickory-resolver = "0.24.2"
http-body-util = "0.1"
Expand Down
5 changes: 2 additions & 3 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ p2p = { workspace = true, default-features = false, features = [
"ws",
] }
socket2 = "0.5"
governor.workspace = true

[target.'cfg(target_family = "wasm")'.dependencies]
p2p = { workspace = true, default-features = false, features = [
"wasm-timer",
] }
p2p = { workspace = true, default-features = false, features = ["wasm-timer"] }
idb = "0.6"
serde-wasm-bindgen = "0.6.5"

Expand Down
Loading
Loading