2022-05-05 22:07:09 +03:00
|
|
|
[package]
|
2022-08-06 08:46:33 +03:00
|
|
|
name = "web3_proxy"
|
2023-05-24 06:58:29 +03:00
|
|
|
version = "0.28.0"
|
2022-05-05 22:07:09 +03:00
|
|
|
edition = "2021"
|
2023-05-31 07:37:58 +03:00
|
|
|
default-run = "web3_proxy_cli"
|
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]
|
2023-05-13 01:15:32 +03:00
|
|
|
default = ["connectinfo", "deadlock_detection"]
|
2022-07-07 00:42:31 +03:00
|
|
|
deadlock_detection = ["parking_lot/deadlock_detection"]
|
2023-05-13 01:15:32 +03:00
|
|
|
mimalloc = ["dep:mimalloc"]
|
2023-03-23 04:43:13 +03:00
|
|
|
tokio-console = ["dep:tokio-console", "dep:console-subscriber"]
|
2023-04-20 01:22:27 +03:00
|
|
|
rdkafka-src = ["rdkafka/cmake-build", "rdkafka/libz", "rdkafka/ssl", "rdkafka/zstd-pkg-config"]
|
2023-05-13 01:15:32 +03:00
|
|
|
connectinfo = []
|
2022-07-07 00:42:31 +03:00
|
|
|
|
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" }
|
2023-05-11 23:09:15 +03:00
|
|
|
latency = { path = "../latency" }
|
2022-07-26 07:53:38 +03:00
|
|
|
migration = { path = "../migration" }
|
2023-05-31 21:52:51 +03:00
|
|
|
payment-contracts = { path = "../payment-contracts" }
|
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
|
|
|
|
2023-05-31 06:58:24 +03:00
|
|
|
influxdb2 = { git = "https://github.com/llamanodes/influxdb2", features = ["rustls"] }
|
|
|
|
influxdb2-structmap = { git = "https://github.com/llamanodes/influxdb2/"}
|
|
|
|
|
2023-01-24 08:50:59 +03:00
|
|
|
# TODO: regex has several "perf" features that we might want to use
|
|
|
|
# TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude
|
|
|
|
# TODO: import num_traits from sea-orm so we always have the same version
|
|
|
|
# TODO: import chrono from sea-orm so we always have the same version
|
|
|
|
# TODO: make sure this time version matches siwe. PR to put this in their prelude
|
2023-05-31 06:58:24 +03:00
|
|
|
# TODO: rdkafka has a tracing feature
|
2023-05-31 21:20:17 +03:00
|
|
|
# TODO: axum has a tracing feature
|
2023-05-31 06:58:24 +03:00
|
|
|
|
|
|
|
# TODO: hdrhistogram for automated tiers
|
2023-01-24 08:50:59 +03:00
|
|
|
|
2023-05-11 23:25:55 +03:00
|
|
|
anyhow = { version = "1.0.71", features = ["backtrace"] }
|
2023-05-13 01:15:32 +03:00
|
|
|
arc-swap = "1.6.0"
|
2023-01-12 02:19:21 +03:00
|
|
|
argh = "0.1.10"
|
2023-05-31 06:58:24 +03:00
|
|
|
async-trait = "0.1.68"
|
2023-05-11 23:25:55 +03:00
|
|
|
axum = { version = "0.6.18", features = ["headers", "ws"] }
|
|
|
|
axum-client-ip = "0.4.1"
|
2023-04-05 22:30:52 +03:00
|
|
|
axum-macros = "0.3.7"
|
2023-05-31 06:58:24 +03:00
|
|
|
chrono = "0.4.26"
|
|
|
|
console-subscriber = { version = "0.1.9", optional = true }
|
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"
|
2023-05-31 07:37:58 +03:00
|
|
|
env_logger = "0.10.0"
|
2023-05-31 21:20:17 +03:00
|
|
|
ethbloom = "0.13.0"
|
2023-06-07 20:50:34 +03:00
|
|
|
ethers = { version = "2.0.7", default-features = false, features = ["rustls", "ws"] }
|
2023-01-26 08:24:09 +03:00
|
|
|
ewma = "0.1.1"
|
2023-05-31 07:37:58 +03:00
|
|
|
fdlimit = "0.2.1"
|
2023-05-13 21:13:02 +03:00
|
|
|
flume = "0.10.14"
|
2023-02-22 07:25:02 +03:00
|
|
|
fstrings = "0.2"
|
2023-04-05 22:30:52 +03:00
|
|
|
futures = { version = "0.3.28", features = ["thread-pool"] }
|
2023-05-14 01:00:24 +03:00
|
|
|
gethostname = "0.4.3"
|
2023-05-31 07:37:58 +03:00
|
|
|
glob = "0.3.1"
|
2023-05-11 23:25:55 +03:00
|
|
|
handlebars = "4.3.7"
|
2023-06-07 20:50:34 +03:00
|
|
|
hashbrown = { version = "0.14.0", features = ["serde"] }
|
2023-05-13 01:15:32 +03:00
|
|
|
hostname = "0.3.1"
|
2023-02-25 11:47:16 +03:00
|
|
|
http = "0.2.9"
|
2023-05-31 06:58:24 +03:00
|
|
|
hyper = { version = "0.14.26", features = ["full", "nightly"] }
|
2023-04-05 22:30:52 +03:00
|
|
|
ipnet = "2.7.2"
|
2023-01-24 08:50:59 +03:00
|
|
|
itertools = "0.10.5"
|
2023-05-13 01:15:32 +03:00
|
|
|
listenfd = "1.0.1"
|
2023-05-29 19:43:51 +03:00
|
|
|
log = "0.4.18"
|
2023-05-13 01:15:32 +03:00
|
|
|
mimalloc = { version = "0.1.37", optional = true}
|
2023-06-08 03:26:38 +03:00
|
|
|
moka = { version = "0.11.1", features = ["future"] }
|
2023-05-31 07:37:58 +03:00
|
|
|
num = "0.4.0"
|
2022-09-24 10:04:11 +03:00
|
|
|
num-traits = "0.2.15"
|
2023-06-07 20:50:34 +03:00
|
|
|
once_cell = { version = "1.18.0" }
|
2023-05-11 23:25:55 +03:00
|
|
|
ordered-float = "3.7.0"
|
2023-01-26 01:11:20 +03:00
|
|
|
pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] }
|
2023-05-31 06:58:24 +03:00
|
|
|
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly", "serde"] }
|
2023-05-31 07:37:58 +03:00
|
|
|
prettytable = "0.10.0"
|
|
|
|
proctitle = "0.1.1"
|
2023-05-18 23:36:35 +03:00
|
|
|
rdkafka = { version = "0.31.0" }
|
2023-06-07 20:50:34 +03:00
|
|
|
regex = "1.8.4"
|
2023-05-31 06:58:24 +03:00
|
|
|
reqwest = { version = "0.11.18", default-features = false, features = ["deflate", "gzip", "json", "tokio-rustls"] }
|
2023-03-03 04:39:50 +03:00
|
|
|
rmp-serde = "1.1.1"
|
2023-05-31 21:20:17 +03:00
|
|
|
rust_decimal = { version = "1.29.1", features = ["maths"] }
|
2023-05-31 07:37:58 +03:00
|
|
|
sentry = { version = "0.31.3", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls", "log", "sentry-log"] }
|
2023-05-11 23:25:55 +03:00
|
|
|
serde = { version = "1.0.163", features = [] }
|
2023-04-20 07:09:17 +03:00
|
|
|
serde_json = { version = "1.0.96", default-features = false, features = ["alloc", "raw_value"] }
|
2023-04-05 22:30:52 +03:00
|
|
|
serde_prometheus = "0.2.2"
|
2023-06-07 20:50:34 +03:00
|
|
|
siwe = "0.5.2"
|
2023-05-13 21:13:02 +03:00
|
|
|
strum = { version = "0.24.1", features = ["derive"] }
|
2023-06-08 03:31:29 +03:00
|
|
|
time = "0.3.22"
|
2023-05-29 19:43:51 +03:00
|
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
2023-05-31 06:58:24 +03:00
|
|
|
tokio-console = { version = "0.1.8", optional = true }
|
2023-05-11 23:25:55 +03:00
|
|
|
tokio-stream = { version = "0.1.14", features = ["sync"] }
|
2023-01-26 08:24:09 +03:00
|
|
|
tokio-uring = { version = "0.4.0", optional = true }
|
2023-05-18 23:36:35 +03:00
|
|
|
toml = "0.7.4"
|
2022-08-16 03:33:26 +03:00
|
|
|
tower = "0.4.13"
|
2023-02-25 11:47:16 +03:00
|
|
|
tower-http = { version = "0.4.0", features = ["cors", "sensitive-headers"] }
|
2023-05-31 02:32:34 +03:00
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = "0.3"
|
2023-05-31 06:58:24 +03:00
|
|
|
ulid = { version = "1.0.0", features = ["rand", "uuid", "serde"] }
|
2023-06-07 20:50:34 +03:00
|
|
|
url = "2.4.0"
|
2023-05-31 06:58:24 +03:00
|
|
|
uuid = { version = "1.3.3", default-features = false, features = ["fast-rng", "serde", "v4", "zerocopy"] }
|
2023-05-23 01:43:39 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-29 19:43:51 +03:00
|
|
|
tokio = { version = "1.28.2", features = ["full", "test-util"] }
|