web3-proxy/web3_proxy/Cargo.toml

75 lines
2.7 KiB
TOML
Raw Normal View History

2022-05-05 22:07:09 +03:00
[package]
2022-08-06 08:46:33 +03:00
name = "web3_proxy"
version = "0.10.0"
2022-05-05 22:07:09 +03:00
edition = "2021"
2022-08-05 22:22:23 +03:00
default-run = "web3_proxy"
2022-05-05 22:07:09 +03:00
# 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]
2022-11-14 21:24:52 +03:00
default = ["deadlock_detection"]
2022-07-07 00:42:31 +03:00
deadlock_detection = ["parking_lot/deadlock_detection"]
2022-09-15 20:57:24 +03:00
# TODO: turn tokio-console on with a feature. console-subscriber = { version = "0.1.7" }
2022-05-05 22:07:09 +03:00
[dependencies]
2022-09-15 20:57:24 +03:00
deferred-rate-limiter = { path = "../deferred-rate-limiter" }
2022-07-26 07:53:38 +03:00
entities = { path = "../entities" }
migration = { path = "../migration" }
2022-09-15 20:57:24 +03:00
redis-rate-limiter = { path = "../redis-rate-limiter" }
2022-11-12 09:11:58 +03:00
thread-fast-rng = { path = "../thread-fast-rng" }
2022-07-26 07:53:38 +03:00
2022-10-21 23:59:05 +03:00
anyhow = { version = "1.0.66", features = ["backtrace"] }
2022-08-03 03:27:32 +03:00
arc-swap = "1.5.1"
argh = "0.1.9"
2022-10-21 01:51:56 +03:00
axum = { version = "0.5.17", features = ["headers", "serde_json", "tokio-tungstenite", "ws"] }
2022-07-07 06:22:09 +03:00
axum-client-ip = "0.2.0"
2022-08-19 23:18:12 +03:00
axum-macros = "0.2.3"
2022-09-24 10:04:11 +03:00
# TODO: import chrono from sea-orm so we always have the same version
2022-11-12 11:24:32 +03:00
chrono = "0.4.23"
2022-10-18 00:47:58 +03:00
counter = "0.5.7"
2022-05-05 22:07:09 +03:00
derive_more = "0.99.17"
2022-07-26 03:38:00 +03:00
dotenv = "0.15.0"
2022-11-21 01:36:45 +03:00
ethers = { version = "1.0.1", default-features = false, features = ["rustls", "ws"] }
2022-11-12 11:24:32 +03:00
env_logger = "0.9.3"
2022-05-17 20:24:10 +03:00
fdlimit = "0.2.1"
2022-07-22 08:11:26 +03:00
flume = "0.10.14"
2022-10-20 10:16:07 +03:00
futures = { version = "0.3.25", features = ["thread-pool"] }
2022-11-11 21:40:52 +03:00
hashbrown = { version = "0.13.1", features = ["serde"] }
2022-10-11 08:13:00 +03:00
hdrhistogram = "7.5.2"
2022-08-16 03:33:26 +03:00
http = "0.2.8"
2022-11-08 01:14:59 +03:00
ipnet = "2.5.1"
2022-11-12 11:24:32 +03:00
log = "0.4.17"
2022-09-09 00:01:36 +03:00
metered = { version = "0.9.0", features = ["serialize"] }
2022-11-08 01:14:59 +03:00
moka = { version = "0.9.6", default-features = false, features = ["future"] }
2022-08-30 23:01:42 +03:00
notify = "5.0.0"
2022-07-11 22:16:18 +03:00
num = "0.4.0"
2022-09-24 10:04:11 +03:00
# TODO: import num_traits from sea-orm so we always have the same version
num-traits = "0.2.15"
2022-07-19 09:41:04 +03:00
parking_lot = { version = "0.12.1", features = ["arc_lock"] }
petgraph = "0.6.2"
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-11-08 01:14:59 +03:00
regex = "1.7.0"
2022-11-16 23:17:50 +03:00
reqwest = { version = "0.11.13", default-features = false, features = ["json", "tokio-rustls"] }
handlebars = "4.3.5"
2022-05-05 22:07:09 +03:00
rustc-hash = "1.1.0"
siwe = "0.5.0"
2022-11-21 01:36:45 +03:00
sentry = { version = "0.29.0", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls", "log", "sentry-log"] }
2022-10-21 23:59:05 +03:00
serde = { version = "1.0.147", features = [] }
2022-11-21 01:36:45 +03:00
serde_json = { version = "1.0.88", default-features = false, features = ["alloc", "raw_value"] }
2022-09-09 00:01:36 +03:00
serde_prometheus = "0.1.6"
# TODO: make sure this time version matches siwe. PR to put this in their prelude
2022-11-08 01:14:59 +03:00
time = "0.3.17"
2022-11-21 01:36:45 +03:00
tokio = { version = "1.22.0", features = ["full"] }
# TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude
tokio-stream = { version = "0.1.11", features = ["sync"] }
2022-05-05 22:07:09 +03:00
toml = "0.5.9"
2022-08-16 03:33:26 +03:00
tower = "0.4.13"
2022-11-12 11:24:32 +03:00
tower-http = { version = "0.3.4", features = ["cors", "sensitive-headers"] }
2022-08-27 08:42:25 +03:00
ulid = { version = "1.0.0", features = ["serde"] }
2022-09-09 00:01:36 +03:00
url = "2.3.1"
2022-11-16 10:27:16 +03:00
uuid = "1.2.2"
2022-10-27 00:39:26 +03:00
itertools = "0.10.5"
glob = "0.3.0"