huskies: merge 970

This commit is contained in:
dave
2026-05-13 12:28:37 +00:00
parent 604fb55bd8
commit 40ea100eae
3 changed files with 14 additions and 11 deletions
+3
View File
@@ -18,6 +18,9 @@ poem = { version = "3", features = ["websocket", "test"] }
portable-pty = "0.9.0" portable-pty = "0.9.0"
reqwest = { version = "0.13.3", features = ["json", "stream"] } reqwest = { version = "0.13.3", features = ["json", "stream"] }
rust-embed = "8" rust-embed = "8"
fastcrypto = "0.1.9"
indexmap = { version = "2.14.0", features = ["serde"] }
rand = "0.9"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
serde_urlencoded = "0.7" serde_urlencoded = "0.7"
+8 -8
View File
@@ -16,19 +16,19 @@ bft = []
[dependencies] [dependencies]
bft-crdt-derive = { path = "bft-crdt-derive" } bft-crdt-derive = { path = "bft-crdt-derive" }
colored = "3" colored = "3"
fastcrypto = "0.1.9" fastcrypto = { workspace = true }
indexmap = { version = "2.2.6", features = ["serde"] } indexmap = { workspace = true, features = ["serde"] }
rand = "0.9" rand = { workspace = true }
random_color = "1" random_color = "1"
serde = { version = "1.0", features = ["derive"] } serde = { workspace = true, features = ["derive"] }
serde_json = { version = "1.0.85", features = ["preserve_order"] } serde_json = { workspace = true, features = ["preserve_order"] }
serde_with = "3" serde_with = "3"
sha2 = "0.11" sha2 = { workspace = true }
[dev-dependencies] [dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] } criterion = { version = "0.5", features = ["html_reports"] }
serde = { version = "1.0", features = ["derive"] } serde = { workspace = true, features = ["derive"] }
serde_json = { version = "1.0.85", features = ["preserve_order"] } serde_json = { workspace = true, features = ["preserve_order"] }
[[bench]] [[bench]]
name = "speed" name = "speed"
+3 -3
View File
@@ -46,9 +46,9 @@ wait-timeout = "0.2.1"
bft-json-crdt = { path = "../crates/bft-json-crdt", default-features = false, features = ["bft"] } bft-json-crdt = { path = "../crates/bft-json-crdt", default-features = false, features = ["bft"] }
source-map-gen = { path = "../crates/source-map-gen" } source-map-gen = { path = "../crates/source-map-gen" }
ed25519-dalek = { version = "2", features = ["rand_core"] } ed25519-dalek = { version = "2", features = ["rand_core"] }
fastcrypto = "0.1.8" fastcrypto = { workspace = true }
rand = "0.9" rand = { workspace = true }
indexmap = { version = "2.2.6", features = ["serde"] } indexmap = { workspace = true, features = ["serde"] }
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
libc = { workspace = true } libc = { workspace = true }