web3-proxy/web3-proxy/Cargo.toml

41 lines
1.6 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-17 19:23:27 +03:00
console-subscriber = { version = "0.1.5", features = ["parking_lot"] }
2022-05-16 22:15:40 +03:00
dashmap = "5.3.3"
2022-05-05 22:07:09 +03:00
derive_more = "0.99.17"
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls", "ws"] }
2022-05-17 20:24:10 +03:00
fdlimit = "0.2.1"
2022-05-05 22:07:09 +03:00
flume = "0.10.12"
futures = { version = "0.3.21", features = ["thread-pool"] }
2022-05-17 07:01:32 +03:00
# TODO: governor has a "futures" and "futures-timer" feature. do we want those?
2022-05-16 08:16:32 +03:00
governor = { version = "0.4.2", features = ["dashmap", "std"] }
2022-05-06 06:14:06 +03:00
hashbrown = "0.12.1"
2022-05-15 22:28:22 +03:00
left-right = "0.11.4"
2022-05-15 04:51:24 +03:00
linkedhashmap = { path = "../linkedhashmap", features = ["inline-more"] }
2022-05-17 07:01:32 +03:00
# TODO: parking_lot has an "arc_lock" feature that we might want to use
2022-05-16 08:16:32 +03:00
parking_lot = { version = "0.12.0", features = ["deadlock_detection"] }
2022-05-12 21:49:57 +03:00
proctitle = "0.1.1"
2022-05-17 07:01:32 +03:00
# TODO: regex has several "perf" features that we might want to use
2022-05-05 22:07:09 +03:00
regex = "1.5.5"
2022-05-17 07:01:32 +03:00
reqwest = { version = "0.11.10", default-features = false, features = ["json", "tokio-rustls"] }
2022-05-05 22:07:09 +03:00
rustc-hash = "1.1.0"
serde = { version = "1.0.137", features = [] }
2022-05-17 07:01:32 +03:00
serde_json = { version = "1.0.81", default-features = false, features = ["alloc", "raw_value"] }
2022-05-17 19:23:27 +03:00
tokio = { version = "1.18.2", features = ["full", "tracing"] }
2022-05-05 22:07:09 +03:00
toml = "0.5.9"
tracing = "0.1.34"
2022-05-17 07:01:32 +03:00
# TODO: tracing-subscriber has serde and serde_json features that we might want to use
2022-05-17 07:26:53 +03:00
tracing-subscriber = { version = "0.3.11", features = ["parking_lot"] }
2022-05-05 22:07:09 +03:00
url = "2.2.2"
2022-05-17 07:01:32 +03:00
# TODO: replace warp with axum?
2022-05-05 22:07:09 +03:00
warp = "0.3.2"