[package] name = "web3-proxy-minimal" version = "0.1.0" 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" # axum = "*" # TODO: use this instead of warp? console-subscriber = { version = "0.1.5", features = ["parking_lot"] } derive_more = "0.99.17" ethers = { path = "../../ethers-rs", features = ["rustls", "ws"] } fdlimit = "0.2.1" flume = "0.10.12" futures = { version = "0.3.21", features = ["thread-pool"] } # TODO: governor has a "futures" and "futures-timer" feature. do we want those? hashbrown = "0.12.1" # TODO: parking_lot has an "arc_lock" feature that we might want to use parking_lot = { version = "0.12.0", features = ["deadlock_detection"] } # TODO: regex has several "perf" features that we might want to use regex = "1.5.5" reqwest = { version = "0.11.10", default-features = false, features = ["json", "tokio-rustls"] } rustc-hash = "1.1.0" serde = { version = "1.0.137", features = [] } serde_json = { version = "1.0.81", default-features = false, features = ["alloc", "raw_value"] } tokio = { version = "1.18.2", features = ["full", "tracing"] } toml = "0.5.9" tracing = "0.1.34" # TODO: tracing-subscriber has serde and serde_json features that we might want to use tracing-subscriber = { version = "0.3.11", features = ["parking_lot"] }