remove unused deps
This commit is contained in:
parent
38c6fbf246
commit
20413b883f
5
Cargo.lock
generated
5
Cargo.lock
generated
@ -1280,7 +1280,6 @@ dependencies = [
|
|||||||
"moka",
|
"moka",
|
||||||
"serde",
|
"serde",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tracing",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -1288,8 +1287,6 @@ name = "deferred-rate-limiter"
|
|||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"hashbrown 0.14.1",
|
|
||||||
"log",
|
|
||||||
"moka",
|
"moka",
|
||||||
"redis-rate-limiter",
|
"redis-rate-limiter",
|
||||||
"tokio",
|
"tokio",
|
||||||
@ -6600,7 +6597,6 @@ dependencies = [
|
|||||||
"derive_more",
|
"derive_more",
|
||||||
"entities",
|
"entities",
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"ethbloom",
|
|
||||||
"ethers",
|
"ethers",
|
||||||
"fdlimit",
|
"fdlimit",
|
||||||
"fstrings",
|
"fstrings",
|
||||||
@ -6632,7 +6628,6 @@ dependencies = [
|
|||||||
"payment-contracts",
|
"payment-contracts",
|
||||||
"rdkafka",
|
"rdkafka",
|
||||||
"redis-rate-limiter",
|
"redis-rate-limiter",
|
||||||
"regex",
|
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"rust_decimal",
|
"rust_decimal",
|
||||||
"sentry",
|
"sentry",
|
||||||
|
@ -6,7 +6,6 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing = "0.1"
|
|
||||||
moka = { version = "0.12.1", features = ["future"] }
|
moka = { version = "0.12.1", features = ["future"] }
|
||||||
serde = "1"
|
serde = "1"
|
||||||
tokio = { version = "1.33.0", features = ["full"] }
|
tokio = { version = "1.33.0", features = ["full"] }
|
||||||
|
@ -8,8 +8,6 @@ edition = "2021"
|
|||||||
redis-rate-limiter = { path = "../redis-rate-limiter" }
|
redis-rate-limiter = { path = "../redis-rate-limiter" }
|
||||||
|
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.75"
|
||||||
hashbrown = "0.14.1"
|
|
||||||
log = "0.4.20"
|
|
||||||
moka = { version = "0.12.1", features = ["future"] }
|
moka = { version = "0.12.1", features = ["future"] }
|
||||||
tokio = "1.33.0"
|
tokio = "1.33.0"
|
||||||
tracing = "0.1.37"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "0.4.18"
|
|
||||||
quick_cache = "0.3.0"
|
quick_cache = "0.3.0"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
tokio = { version = "1.28.2", features = ["full"] }
|
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 }
|
console-subscriber = { version = "0.2.0", features = ["env-filter", "parking_lot"], optional = true }
|
||||||
derivative = "2.2.0"
|
derivative = "2.2.0"
|
||||||
derive_more = { version = "0.99.17", features = ["nightly"] }
|
derive_more = { version = "0.99.17", features = ["nightly"] }
|
||||||
ethbloom = { version = "0.13.0" }
|
|
||||||
ethers = { version = "2.0.10", default-features = false, features = ["rustls", "ws"] }
|
ethers = { version = "2.0.10", default-features = false, features = ["rustls", "ws"] }
|
||||||
fdlimit = "0.2.1"
|
fdlimit = "0.2.1"
|
||||||
fstrings = "0.2"
|
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"] }
|
pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] }
|
||||||
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
|
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
|
||||||
rdkafka = { version = "0.34.0", features = ["tracing"] }
|
rdkafka = { version = "0.34.0", features = ["tracing"] }
|
||||||
regex = "1.10.0"
|
|
||||||
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls"] }
|
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls"] }
|
||||||
rust_decimal = { version = "1.32.0" }
|
rust_decimal = { version = "1.32.0" }
|
||||||
sentry = { version = "0.31.7", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "serde_json", "tracing"] }
|
sentry = { version = "0.31.7", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "serde_json", "tracing"] }
|
||||||
|
Loading…
Reference in New Issue
Block a user