diff --git a/common/Cargo.toml b/common/Cargo.toml index 4e29b1e..8bfc317 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -10,7 +10,6 @@ serde_json.workspace = true serde.workspace = true reqwest.workspace = true k256.workspace = true -rand.workspace = true rs_merkle.workspace = true sha2.workspace = true diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index df2bad8..16e1b2e 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -5,15 +5,12 @@ edition = "2024" [dependencies] anyhow.workspace = true -serde_json.workspace = true env_logger.workspace = true log.workspace = true -serde.workspace = true actix.workspace = true actix-web.workspace = true tokio.workspace = true -toml.workspace = true hex.workspace = true tempfile.workspace = true @@ -21,9 +18,6 @@ tempfile.workspace = true features = ["derive", "env"] workspace = true -[dependencies.sequencer_rpc] -path = "../sequencer_rpc" - [dependencies.sequencer_core] path = "../sequencer_core" @@ -35,6 +29,3 @@ path = "../wallet" [dependencies.common] path = "../common" - -[dependencies.key_protocol] -path = "../key_protocol" diff --git a/key_protocol/Cargo.toml b/key_protocol/Cargo.toml index 2f2bb07..947bd7a 100644 --- a/key_protocol/Cargo.toml +++ b/key_protocol/Cargo.toml @@ -6,7 +6,6 @@ edition = "2021" [dependencies] anyhow.workspace = true serde_json.workspace = true -env_logger.workspace = true log.workspace = true serde.workspace = true k256.workspace = true @@ -16,8 +15,6 @@ elliptic-curve.workspace = true hex.workspace = true aes-gcm.workspace = true lazy_static.workspace = true -tiny-keccak.workspace = true -nssa-core = { path = "../nssa/core" } [dependencies.common] path = "../common" diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index ff8b855..0d1a317 100644 --- a/mempool/Cargo.toml +++ b/mempool/Cargo.toml @@ -4,8 +4,3 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow.workspace = true -serde_json.workspace = true -env_logger.workspace = true -log.workspace = true -serde.workspace = true diff --git a/nssa/Cargo.toml b/nssa/Cargo.toml index 98a0adf..3163902 100644 --- a/nssa/Cargo.toml +++ b/nssa/Cargo.toml @@ -13,7 +13,6 @@ sha2 = "0.10.9" secp256k1 = "0.31.1" rand = "0.8" borsh = "1.5.7" -bytemuck = "1.13" hex = "0.4.3" [dev-dependencies] diff --git a/nssa/test_program_methods/guest/Cargo.toml b/nssa/test_program_methods/guest/Cargo.toml index 0d47ccd..ea669c0 100644 --- a/nssa/test_program_methods/guest/Cargo.toml +++ b/nssa/test_program_methods/guest/Cargo.toml @@ -6,5 +6,4 @@ edition = "2021" [workspace] [dependencies] -risc0-zkvm = { version = "3.0.3", default-features = false, features = ['std'] } nssa-core = { path = "../../core" } diff --git a/sequencer_core/Cargo.toml b/sequencer_core/Cargo.toml index 2e3570b..0e85b71 100644 --- a/sequencer_core/Cargo.toml +++ b/sequencer_core/Cargo.toml @@ -6,14 +6,8 @@ edition = "2021" [dependencies] hex.workspace = true anyhow.workspace = true -serde_json.workspace = true -env_logger.workspace = true -log.workspace = true serde.workspace = true rand.workspace = true -elliptic-curve.workspace = true -k256.workspace = true -tiny-keccak.workspace = true tempfile.workspace = true [dependencies.storage] @@ -22,15 +16,8 @@ path = "../storage" [dependencies.mempool] path = "../mempool" -[dependencies.key_protocol] -path = "../key_protocol" - [dependencies.common] path = "../common" [dependencies.nssa] path = "../nssa" - -[dependencies.secp256k1-zkp] -workspace = true -features = ["std", "rand-std", "rand", "serde", "global-context"] diff --git a/sequencer_rpc/Cargo.toml b/sequencer_rpc/Cargo.toml index c6ce004..132c0f1 100644 --- a/sequencer_rpc/Cargo.toml +++ b/sequencer_rpc/Cargo.toml @@ -6,10 +6,8 @@ edition = "2021" [dependencies] anyhow.workspace = true serde_json.workspace = true -env_logger.workspace = true log.workspace = true serde.workspace = true -actix.workspace = true actix-cors.workspace = true futures.workspace = true hex.workspace = true @@ -19,18 +17,9 @@ base64.workspace = true actix-web.workspace = true tokio.workspace = true -[dependencies.mempool] -path = "../mempool" - -[dependencies.key_protocol] -path = "../key_protocol" - [dependencies.sequencer_core] path = "../sequencer_core" -[dependencies.storage] -path = "../storage" - [dependencies.common] path = "../common" diff --git a/sequencer_runner/Cargo.toml b/sequencer_runner/Cargo.toml index b42fcb6..2ca4e23 100644 --- a/sequencer_runner/Cargo.toml +++ b/sequencer_runner/Cargo.toml @@ -8,20 +8,15 @@ anyhow.workspace = true serde_json.workspace = true env_logger.workspace = true log.workspace = true -serde.workspace = true actix.workspace = true actix-web.workspace = true tokio.workspace = true -toml.workspace = true [dependencies.clap] features = ["derive", "env"] workspace = true -[dependencies.mempool] -path = "../mempool" - [dependencies.sequencer_rpc] path = "../sequencer_rpc" diff --git a/storage/Cargo.toml b/storage/Cargo.toml index c4fd3a9..047b20b 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -6,12 +6,8 @@ edition = "2021" [dependencies] anyhow.workspace = true serde_json.workspace = true -env_logger.workspace = true -log.workspace = true serde.workspace = true -lru.workspace = true thiserror.workspace = true -hex.workspace = true rocksdb.workspace = true diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml index 56974c4..0ecb0b0 100644 --- a/wallet/Cargo.toml +++ b/wallet/Cargo.toml @@ -9,18 +9,8 @@ serde_json.workspace = true env_logger.workspace = true log.workspace = true serde.workspace = true -rand.workspace = true -k256.workspace = true -sha2.workspace = true -bincode.workspace = true -elliptic-curve.workspace = true -reqwest.workspace = true -thiserror.workspace = true tokio.workspace = true tempfile.workspace = true -risc0-zkvm = "3.0.3" -hex.workspace = true -actix-rt.workspace = true clap.workspace = true nssa-core = { path = "../nssa/core" } @@ -32,7 +22,3 @@ path = "../nssa" [dependencies.common] path = "../common" - -[dependencies.secp256k1-zkp] -workspace = true -features = ["std", "rand-std", "rand", "serde", "global-context"]