web3-proxy/Cargo.toml

27 lines
812 B
TOML
Raw Normal View History

2022-03-05 06:46:57 +03:00
[package]
2022-04-23 21:00:03 +03:00
name = "web3-proxy"
2022-03-05 06:46:57 +03:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-04-27 07:36:11 +03:00
arc-swap = "1.5.0"
2022-04-25 22:14:10 +03:00
argh = "0.1.7"
anyhow = "1.0.57"
2022-04-24 21:56:46 +03:00
atomic-counter = "1.0.1"
2022-04-25 22:14:10 +03:00
dashmap = "5.2.0"
2022-04-26 19:50:02 +03:00
derive_more = "0.99"
2022-04-25 22:42:51 +03:00
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls", "ws"] }
2022-04-25 22:14:10 +03:00
futures = { version = "0.3.21", features = ["thread-pool"] }
governor = { version = "0.4.2", features = ["dashmap", "std"] }
tokio = { version = "1.17.0", features = ["full"] }
regex = "1.5.5"
reqwest = { version = "0.11.10", features = ["json"] }
2022-04-26 09:54:24 +03:00
serde = {version = "1.0"}
2022-04-25 22:14:10 +03:00
serde_json = { version = "1.0.79", default-features = false, features = ["alloc"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = "2.2.2"
warp = "0.3.2"