From 79ae74e151e688dfcfa237b48dd39a27dd32120e Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 6 May 2022 03:14:06 +0000 Subject: [PATCH] check out axum --- web3-proxy/Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web3-proxy/Cargo.toml b/web3-proxy/Cargo.toml index 76b190cd..c8674154 100644 --- a/web3-proxy/Cargo.toml +++ b/web3-proxy/Cargo.toml @@ -6,23 +6,24 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +anyhow = "1.0.57" arc-swap = "1.5.0" argh = "0.1.7" -anyhow = "1.0.57" +# axum = "*" # TODO: use this instead of warp? derive_more = "0.99.17" ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls", "ws"] } flume = "0.10.12" futures = { version = "0.3.21", features = ["thread-pool"] } -hashbrown = "0.12.1" governor = { version = "0.4.2", features = ["dashmap", "std"] } +hashbrown = "0.12.1" linkedhashmap = { path = "../linkedhashmap" } -tokio = { version = "1.18.1", features = ["full"] } parking_lot = "0.12.0" regex = "1.5.5" reqwest = { version = "0.11.10", default-features = false, features = ["json", "rustls"] } rustc-hash = "1.1.0" serde = { version = "1.0.137", features = [] } serde_json = { version = "1.0.81", default-features = false, features = ["alloc"] } +tokio = { version = "1.18.1", features = ["full"] } toml = "0.5.9" tracing = "0.1.34" tracing-subscriber = "0.3.11"