diff --git a/Cargo.lock b/Cargo.lock index 2310d80bb2..ac98580bbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5697,7 +5697,6 @@ name = "p2p" version = "0.1.0" dependencies = [ "anyhow", - "assert_matches", "async-trait", "base64 0.13.1", "clap", @@ -5974,13 +5973,11 @@ dependencies = [ name = "pathfinder-crypto" version = "0.1.0" dependencies = [ - "ark-ec", "ark-ff", "assert_matches", "bitvec", "criterion", "fake", - "hex", "num-bigint", "pretty_assertions", "rand", @@ -6092,7 +6089,6 @@ dependencies = [ "test-log", "thiserror", "tokio", - "tokio-stream", "tokio-tungstenite 0.20.1", "tower", "tower-http", @@ -8157,7 +8153,6 @@ dependencies = [ "futures-core", "pin-project-lite", "tokio", - "tokio-util", ] [[package]] diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index 2e46b5c27a..93f9ed6bbf 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -14,7 +14,6 @@ path = "src/lib.rs" [build-dependencies] [dependencies] -ark-ec = { version = "0.4.2" } ark-ff = { version = "0.4.2", default-features = false } bitvec = { workspace = true } fake = { workspace = true } @@ -25,7 +24,6 @@ serde = { workspace = true } [dev-dependencies] assert_matches = { workspace = true } criterion = { workspace = true } -hex = { workspace = true } num-bigint = { workspace = true } pretty_assertions = { workspace = true } serde_json = { workspace = true } diff --git a/crates/p2p/Cargo.toml b/crates/p2p/Cargo.toml index fab776f1f0..ed2bc12a73 100644 --- a/crates/p2p/Cargo.toml +++ b/crates/p2p/Cargo.toml @@ -48,7 +48,6 @@ void = "1.0.2" zeroize = "1.6.0" [dev-dependencies] -assert_matches = { workspace = true } clap = { workspace = true, features = ["derive", "env", "wrap_help"] } env_logger = "0.10.0" fake = { workspace = true } diff --git a/crates/rpc/Cargo.toml b/crates/rpc/Cargo.toml index 4cb5116b23..a9bed04742 100644 --- a/crates/rpc/Cargo.toml +++ b/crates/rpc/Cargo.toml @@ -40,7 +40,6 @@ starknet-gateway-types = { path = "../gateway-types" } starknet_api = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["test-util", "process"] } -tokio-stream = { version = "0.1", features = ["sync"] } tower = { version = "0.4.13", default-features = false, features = [ "filter", "util",