diff --git a/Cargo.lock b/Cargo.lock index 5ff49eaa..eb3dd757 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2923,7 +2923,6 @@ checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" name = "latency" version = "0.1.0" dependencies = [ - "log", "portable-atomic", "serde", "tokio", @@ -6583,7 +6582,6 @@ dependencies = [ "argh", "async-stream", "async-stripe", - "async-trait", "axum", "axum-client-ip", "axum-macros", @@ -6644,7 +6642,6 @@ dependencies = [ "tokio-console", "tokio-stream", "toml 0.8.2", - "tower", "tower-http", "tracing", "tracing-subscriber", diff --git a/latency/Cargo.toml b/latency/Cargo.toml index 267595d6..5fc0d8ce 100644 --- a/latency/Cargo.toml +++ b/latency/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.20" portable-atomic = { version = "1.4.3", features = ["float"] } serde = { version = "1.0.188", features = [] } tokio = { version = "1.33.0", features = ["full"] } diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 72944da3..36240cb8 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -42,7 +42,6 @@ arc-swap = { version = "1.6.0" } argh = "0.1.12" async-stream = "0.3.5" async-stripe = { version = "0.25.2", default-features = false, features = ["billing", "checkout", "connect", "runtime-tokio-hyper-rustls", "webhook-events"], optional = true } -async-trait = "0.1.73" axum = { version = "0.6.20", features = ["headers", "tracing", "ws"] } axum-client-ip = "0.4.2" axum-macros = "0.3.8" @@ -91,7 +90,6 @@ tokio = { version = "1.33.0", features = ["full", "tracing"] } tokio-console = { version = "0.1.10", optional = true } tokio-stream = { version = "0.1.14", features = ["sync"] } toml = "0.8.2" -tower = { version = "0.4.13", features = ["timeout", "tracing"] } tower-http = { version = "0.4.4", features = ["cors", "normalize-path", "sensitive-headers", "trace"] } tracing = "0.1" ulid = { version = "1.1.0", features = ["rand", "uuid", "serde"] }