web3-proxy/web3-proxy/Cargo.toml

48 lines
1.7 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
2022-07-07 00:42:31 +03:00
[features]
default = ["deadlock_detection"]
deadlock_detection = ["parking_lot/deadlock_detection"]
2022-05-05 22:07:09 +03:00
[dependencies]
2022-06-25 05:29:07 +03:00
anyhow = { version = "1.0.58", features = ["backtrace"] }
2022-05-18 23:18:01 +03:00
arc-swap = "1.5.0"
2022-07-07 00:42:31 +03:00
argh = "0.1.8"
2022-07-16 07:13:02 +03:00
axum = { version = "0.5.13", features = ["serde_json", "tokio-tungstenite", "ws"] }
2022-07-07 06:22:09 +03:00
axum-client-ip = "0.2.0"
2022-07-19 04:31:12 +03:00
counter = "0.5.6"
2022-05-29 04:27:15 +03:00
dashmap = "5.3.4"
2022-05-05 22:07:09 +03:00
derive_more = "0.99.17"
2022-05-28 07:25:55 +03:00
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["rustls", "ws"] }
2022-05-17 20:24:10 +03:00
fdlimit = "0.2.1"
flume = "0.10.13"
2022-05-05 22:07:09 +03:00
futures = { version = "0.3.21", features = ["thread-pool"] }
2022-07-19 04:31:12 +03:00
hashbrown = "0.12.3"
2022-05-15 04:51:24 +03:00
linkedhashmap = { path = "../linkedhashmap", features = ["inline-more"] }
2022-07-07 00:42:31 +03:00
notify = "4.0.17"
2022-07-11 22:16:18 +03:00
num = "0.4.0"
2022-05-22 02:34:05 +03:00
redis-cell-client = { path = "../redis-cell-client" }
2022-05-17 07:01:32 +03:00
# TODO: parking_lot has an "arc_lock" feature that we might want to use
2022-07-07 00:42:31 +03:00
parking_lot = "0.12.1"
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-07-07 00:42:31 +03:00
regex = "1.6.0"
reqwest = { version = "0.11.11", default-features = false, features = ["json", "tokio-rustls"] }
2022-05-05 22:07:09 +03:00
rustc-hash = "1.1.0"
2022-07-16 07:13:02 +03:00
siwe = "0.3.0"
2022-07-11 22:16:18 +03:00
serde = { version = "1.0.139", features = [] }
2022-07-07 00:42:31 +03:00
serde_json = { version = "1.0.82", default-features = false, features = ["alloc", "raw_value"] }
2022-07-16 07:13:02 +03:00
tokio = { version = "1.20.0", features = ["full", "tracing"] }
2022-05-05 22:07:09 +03:00
toml = "0.5.9"
tracing = "0.1.35"
2022-05-17 07:01:32 +03:00
# TODO: tracing-subscriber has serde and serde_json features that we might want to use
2022-07-07 00:42:31 +03:00
tracing-subscriber = { version = "0.3.14", features = ["env-filter", "parking_lot"] }
2022-05-05 22:07:09 +03:00
url = "2.2.2"
2022-06-18 10:06:54 +03:00
tower = "0.4.13"
tokio-stream = { version = "0.1.9", features = ["sync"] }