diff --git a/Cargo.lock b/Cargo.lock index 47d70219..7ecf28e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1881,7 +1881,6 @@ dependencies = [ "eyre", "metrics", "pprof_hyper_server", - "protox", "reth-chainspec", "reth-db", "reth-e2e-test-utils", @@ -1902,7 +1901,6 @@ dependencies = [ "tikv-jemalloc-ctl", "tikv-jemallocator", "tokio", - "tonic-build", "tracing", "tracing-test", ] diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml index 7ee83949..10c627d5 100644 --- a/crates/node/Cargo.toml +++ b/crates/node/Cargo.toml @@ -24,8 +24,7 @@ arbitrary = [ "revm/arbitrary", "reth-ethereum/arbitrary", ] -remote-signer = ["dep:protox", "dep:tonic-build"] -integration = ["remote-signer"] +integration = [] [dependencies] alloy-evm.workspace = true @@ -73,10 +72,6 @@ tracing.workspace = true [target.'cfg(not(target_env = "msvc"))'.dependencies] tikv-jemallocator = "0.6" -[build-dependencies] -protox = { workspace = true, optional = true } -tonic-build = { workspace = true, optional = true } - [dev-dependencies] arc-execution-config = { workspace = true, features = ["test-utils"] }