web3-proxy/web3_proxy/Cargo.toml

77 lines
2.9 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-09-24 08:54:38 +03:00
version = "0.2.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-09-14 04:42:18 +03:00
anyhow = { version = "1.0.65", features = ["backtrace"] }
2022-08-03 03:27:32 +03:00
arc-swap = "1.5.1"
argh = "0.1.9"
2022-09-12 17:36:26 +03:00
axum = { version = "0.5.16", 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-07-19 04:31:12 +03:00
counter = "0.5.6"
2022-09-01 08:58:55 +03:00
dashmap = "5.4.0"
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-08-30 23:01:42 +03:00
futures = { version = "0.3.24", features = ["thread-pool"] }
2022-07-23 02:26:04 +03:00
hashbrown = { version = "0.12.3", features = ["serde"] }
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"] }
2022-09-12 17:36:26 +03:00
handlebars = "4.3.4"
2022-05-05 22:07:09 +03:00
rustc-hash = "1.1.0"
siwe = "0.4.2"
2022-08-21 11:30:43 +03:00
sea-orm = { version = "0.9.2", features = ["macros"] }
serde = { version = "1.0.145", features = [] }
serde_json = { version = "1.0.85", 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-08-26 08:26:27 +03:00
time = "0.3.14"
2022-09-14 04:42:18 +03:00
tokio = { version = "1.21.1", features = ["full", "tracing"] }
# TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude
2022-09-20 01:25:45 +03:00
tokio-stream = { version = "0.1.10", 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"] }
2022-08-03 03:27:32 +03:00
tracing = "0.1.36"
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-22 08:11:26 +03:00
tracing-subscriber = { version = "0.3.15", 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-08-16 03:33:26 +03:00
uuid = "1.1.2"