web3-proxy/Cargo.toml

30 lines
903 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-05-03 00:35:49 +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-29 04:57:16 +03:00
derive_more = "0.99.17"
2022-04-25 22:42:51 +03:00
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls", "ws"] }
2022-05-03 08:13:53 +03:00
flume = "0.10.12"
2022-04-25 22:14:10 +03:00
futures = { version = "0.3.21", features = ["thread-pool"] }
2022-05-02 23:32:55 +03:00
fxhash = "0.2.1"
2022-04-25 22:14:10 +03:00
governor = { version = "0.4.2", features = ["dashmap", "std"] }
2022-05-03 00:35:49 +03:00
tokio = { version = "1.18.1", features = ["full"] }
parking_lot = "0.12.0"
2022-04-25 22:14:10 +03:00
regex = "1.5.5"
2022-04-29 04:57:16 +03:00
reqwest = { version = "0.11.10", features = ["json", "rustls"] }
2022-05-03 00:35:49 +03:00
rustc-hash = "1.1.0"
serde = { version = "1.0.137", features = [] }
2022-05-04 09:06:34 +03:00
serde_json = { version = "1.0.81", default-features = false, features = ["alloc"] }
2022-05-03 08:13:53 +03:00
toml = "0.5.9"
2022-04-29 04:57:16 +03:00
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
2022-04-25 22:14:10 +03:00
url = "2.2.2"
warp = "0.3.2"