From 20413b883f8d4b1e100266abc65d3306c0756c50 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 11 Oct 2023 00:57:46 -0700 Subject: [PATCH] remove unused deps --- Cargo.lock | 5 ----- deduped_broadcast/Cargo.toml | 1 - deferred-rate-limiter/Cargo.toml | 2 -- quick_cache_ttl/Cargo.toml | 1 - web3_proxy/Cargo.toml | 2 -- 5 files changed, 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7f8ade44..b9557491 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1280,7 +1280,6 @@ dependencies = [ "moka", "serde", "tokio", - "tracing", ] [[package]] @@ -1288,8 +1287,6 @@ name = "deferred-rate-limiter" version = "0.2.0" dependencies = [ "anyhow", - "hashbrown 0.14.1", - "log", "moka", "redis-rate-limiter", "tokio", @@ -6600,7 +6597,6 @@ dependencies = [ "derive_more", "entities", "env_logger", - "ethbloom", "ethers", "fdlimit", "fstrings", @@ -6632,7 +6628,6 @@ dependencies = [ "payment-contracts", "rdkafka", "redis-rate-limiter", - "regex", "reqwest", "rust_decimal", "sentry", diff --git a/deduped_broadcast/Cargo.toml b/deduped_broadcast/Cargo.toml index 5dc4039a..57d0f03b 100644 --- a/deduped_broadcast/Cargo.toml +++ b/deduped_broadcast/Cargo.toml @@ -6,7 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tracing = "0.1" moka = { version = "0.12.1", features = ["future"] } serde = "1" tokio = { version = "1.33.0", features = ["full"] } diff --git a/deferred-rate-limiter/Cargo.toml b/deferred-rate-limiter/Cargo.toml index bd713624..bc9c9d36 100644 --- a/deferred-rate-limiter/Cargo.toml +++ b/deferred-rate-limiter/Cargo.toml @@ -8,8 +8,6 @@ edition = "2021" redis-rate-limiter = { path = "../redis-rate-limiter" } anyhow = "1.0.75" -hashbrown = "0.14.1" -log = "0.4.20" moka = { version = "0.12.1", features = ["future"] } tokio = "1.33.0" tracing = "0.1.37" diff --git a/quick_cache_ttl/Cargo.toml b/quick_cache_ttl/Cargo.toml index 5cdcc81c..99325643 100644 --- a/quick_cache_ttl/Cargo.toml +++ b/quick_cache_ttl/Cargo.toml @@ -6,7 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -log = "0.4.18" quick_cache = "0.3.0" serde = "1" tokio = { version = "1.28.2", features = ["full"] } diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 5b487558..2f274415 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -52,7 +52,6 @@ chrono = { version = "0.4.31" } console-subscriber = { version = "0.2.0", features = ["env-filter", "parking_lot"], optional = true } derivative = "2.2.0" derive_more = { version = "0.99.17", features = ["nightly"] } -ethbloom = { version = "0.13.0" } ethers = { version = "2.0.10", default-features = false, features = ["rustls", "ws"] } fdlimit = "0.2.1" fstrings = "0.2" @@ -78,7 +77,6 @@ ordered-float = {version = "4.1.1" } pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] } parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] } rdkafka = { version = "0.34.0", features = ["tracing"] } -regex = "1.10.0" reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls"] } rust_decimal = { version = "1.32.0" } sentry = { version = "0.31.7", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "serde_json", "tracing"] }