web3-proxy/web3_proxy/Cargo.toml

79 lines
3.1 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"
2022-10-26 00:10:05 +03:00
version = "0.5.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-07-26 07:58:37 +03:00
default = ["deadlock_detection", "verbose_db"]
2022-07-07 00:42:31 +03:00
deadlock_detection = ["parking_lot/deadlock_detection"]
2022-07-26 07:58:37 +03:00
verbose_db = ["sea-orm/debug-print"]
2022-07-07 00:42:31 +03:00
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-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
chrono = "0.4.22"
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-08-03 03:27:26 +03:00
ethers = { version = "0.17.0", features = ["rustls", "ws"] }
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-07-23 02:26:04 +03:00
hashbrown = { version = "0.12.3", 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"
ipnet = "2.5.0"
2022-09-09 00:01:36 +03:00
metered = { version = "0.9.0", features = ["serialize"] }
2022-09-05 19:25:21 +03:00
moka = { version = "0.9.4", 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-08-05 22:22:23 +03:00
rand = "0.8.5"
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.12", 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-10-25 06:41:59 +03:00
sea-orm = { version = "0.10.0", features = ["macros"] }
2022-10-25 00:07:29 +03:00
sentry = { version = "0.27.0", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls"] }
sentry-tracing = "0.27.0"
2022-10-21 23:59:05 +03:00
serde = { version = "1.0.147", features = [] }
2022-10-20 10:16:07 +03:00
serde_json = { version = "1.0.87", 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-10-25 00:07:29 +03:00
time = "0.3.16"
2022-09-28 06:35:55 +03:00
tokio = { version = "1.21.2", features = ["full", "tracing"] }
# 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-09-25 07:26:13 +03:00
# TODO: i don't think we need this. we can use it from tower-http instead. though this seems to use ulid and not uuid?
2022-08-16 03:33:26 +03:00
tower-request-id = "0.2.0"
2022-09-25 19:35:01 +03:00
tower-http = { version = "0.3.4", features = ["cors", "sensitive-headers", "trace"] }
tracing = "0.1.37"
2022-05-17 07:01:32 +03:00
# TODO: tracing-subscriber has serde and serde_json features that we might want to use
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "parking_lot"] }
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-10-10 07:15:07 +03:00
uuid = "1.2.1"