remove unused deps

This commit is contained in:
Bryan Stitt 2023-10-11 00:57:46 -07:00
parent 38c6fbf246
commit 20413b883f
5 changed files with 0 additions and 11 deletions

5
Cargo.lock generated

@ -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",

@ -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"] }

@ -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"

@ -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"] }

@ -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"] }