web3-proxy/web3-proxy/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Normal View History

2022-05-05 22:07:09 +03:00
[package]
name = "web3-proxy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-05-06 06:14:06 +03:00
anyhow = "1.0.57"
2022-05-05 22:07:09 +03:00
argh = "0.1.7"
2022-05-06 06:14:06 +03:00
# axum = "*" # TODO: use this instead of warp?
2022-05-05 22:07:09 +03:00
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"] }
governor = { version = "0.4.2", features = ["dashmap", "std"] }
2022-05-06 06:14:06 +03:00
hashbrown = "0.12.1"
2022-05-05 22:07:09 +03:00
linkedhashmap = { path = "../linkedhashmap" }
parking_lot = "0.12.0"
2022-05-12 21:49:57 +03:00
proctitle = "0.1.1"
2022-05-05 22:07:09 +03:00
regex = "1.5.5"
2022-05-06 04:25:49 +03:00
reqwest = { version = "0.11.10", default-features = false, features = ["json", "rustls"] }
2022-05-05 22:07:09 +03:00
rustc-hash = "1.1.0"
serde = { version = "1.0.137", features = [] }
serde_json = { version = "1.0.81", default-features = false, features = ["alloc"] }
2022-05-12 02:50:52 +03:00
tokio = { version = "1.18.2", features = ["full"] }
2022-05-05 22:07:09 +03:00
toml = "0.5.9"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
url = "2.2.2"
warp = "0.3.2"