web3-proxy/web3_proxy/Cargo.toml

116 lines
5.4 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.34.0"
2022-05-05 22:07:09 +03:00
edition = "2021"
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-06-29 23:12:35 +03:00
default = ["deadlock_detection"]
2022-07-07 00:42:31 +03:00
deadlock_detection = ["parking_lot/deadlock_detection"]
mimalloc = ["dep:mimalloc"]
tokio-console = ["dep:tokio-console", "dep:console-subscriber"]
rdkafka-src = ["rdkafka/cmake-build", "rdkafka/libz", "rdkafka/ssl-vendored", "rdkafka/zstd-pkg-config"]
tests-needing-docker = []
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" }
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-07-26 07:53:38 +03:00
2023-06-24 08:23:51 +03:00
#ethers = { git = "https://github.com/llamanodes/ethers-rs/", rev = "eb68f5d60850008cd302762bd3a5a4bdcfecc713", default-features = false, features = ["rustls", "ws"] }
2023-06-17 09:41:12 +03:00
influxdb2 = { git = "https://github.com/llamanodes/influxdb2", features = ["rustls"], rev = "2d125128696a29d7e0b9abc052c928937e7c0579" }
influxdb2-structmap = { git = "https://github.com/llamanodes/influxdb2/", rev = "2d125128696a29d7e0b9abc052c928937e7c0579"}
2023-06-30 00:42:01 +03:00
# TODO: we can't actually use 0.6 because they want a Provider and we have an Arc<Provider>
2023-06-24 19:48:28 +03:00
siwe = { git = "https://github.com/llamanodes/siwe-rs", rev = "013be5204ff1c85778ce21619f4b677a003db8a1", features = ["ethers", "serde"] }
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-11 23:25:55 +03:00
anyhow = { version = "1.0.71", features = ["backtrace"] }
arc-swap = { version = "1.6.0" }
2023-01-12 02:19:21 +03:00
argh = "0.1.10"
2023-07-03 23:12:12 +03:00
async-stripe = { version = "0.22.2", default-features = false, features = ["billing", "checkout", "connect", "runtime-tokio-hyper-rustls", "webhook-events"] }
2023-07-05 21:55:17 +03:00
async-trait = "0.1.71"
axum = { version = "0.6.18", features = ["headers", "tracing", "ws"] }
2023-05-11 23:25:55 +03:00
axum-client-ip = "0.4.1"
2023-04-05 22:30:52 +03:00
axum-macros = "0.3.7"
2023-06-13 05:13:06 +03:00
base64 = "0.21.2"
check-if-email-exists = "0.9.0"
chrono = { version = "0.4.26" }
2023-07-04 02:55:44 +03:00
console-subscriber = { version = "0.1.10", features = ["env-filter", "parking_lot"], optional = true }
2022-10-18 00:47:58 +03:00
counter = "0.5.7"
derive_more = { version = "0.99.17", features = ["nightly"] }
ethbloom = { version = "0.13.0" }
2023-06-24 08:23:51 +03:00
ethers = { version = "2.0.7", default-features = false, features = ["rustls", "ws"] }
fdlimit = "0.2.1"
flume = "0.10.14"
2023-02-22 07:25:02 +03:00
fstrings = "0.2"
futures = { version = "0.3.28" }
glob = "0.3.1"
2023-05-11 23:25:55 +03:00
handlebars = "4.3.7"
hashbrown = { version = "0.14.0", features = ["serde", "nightly"] }
2023-06-13 05:13:06 +03:00
hdrhistogram = "7.5.2"
hostname = "0.3.1"
2023-02-25 11:47:16 +03:00
http = "0.2.9"
2023-06-27 07:07:25 +03:00
hyper = { version = "0.14.27", features = ["full", "nightly"] }
ipnet = { version = "2.8.0", features = ["json"] }
itertools = "0.11.0"
listenfd = "1.0.1"
mimalloc = { version = "0.1.37", optional = true}
moka = { version = "0.11.2", default-features = false, features = ["atomic64", "future", "parking_lot", "quanta", "triomphe"] }
nanorand = { version = "0.7.0", default-features = false, features = ["std", "tls", "wyrand"] }
num = { version = "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" }
ordered-float = {version = "3.7.0" }
pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] }
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
prettytable = "0.10.0"
proctitle = "0.1.1"
2023-07-03 02:21:10 +03:00
rdkafka = { version = "0.33.0", features = ["tracing"] }
2023-07-05 21:55:17 +03:00
regex = "1.9.0"
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-06-16 10:48:22 +03:00
rust_decimal = { version = "1.30.0", features = ["maths"] }
sentry = { version = "0.31.5", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "serde_json", "tracing"] }
sentry-tracing = "0.31.5"
2023-07-03 22:28:07 +03:00
serde = { version = "1.0.166" }
2023-07-05 21:55:17 +03:00
serde_json = { version = "1.0.100", default-features = false, features = ["raw_value"] }
serde_prometheus = "0.2.3"
2023-06-20 03:48:46 +03:00
strum = { version = "0.25.0", features = ["derive"] }
2023-07-03 02:21:10 +03:00
time_01 = { package = "time", version = "0.1.45" }
time_03 = { package = "time", version = "0.3" }
2023-06-30 09:16:31 +03:00
tokio = { version = "1.29.1", features = ["full", "tracing"] }
2023-07-04 02:55:44 +03:00
tokio-console = { version = "0.1.9", optional = true }
2023-05-11 23:25:55 +03:00
tokio-stream = { version = "0.1.14", features = ["sync"] }
tokio-uring = { version = "0.4.0", optional = true }
2023-07-06 07:02:30 +03:00
toml = "0.7.6"
tower = { version = "0.4.13", features = ["tracing"] }
tower-http = { version = "0.4.1", features = ["cors", "sensitive-headers", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ulid = { version = "1.0.0", features = ["rand", "uuid", "serde"] }
url = { version = "2.4.0" }
uuid = { version = "1.4.0", default-features = false, features = ["fast-rng", "v4", "zerocopy"] }
2023-05-23 01:43:39 +03:00
2023-06-27 22:36:41 +03:00
# TODO: why doesn't this work in dev-dependencies
2023-06-25 02:43:11 +03:00
test-log = { version = "0.2.12", default-features = false, features = ["trace"] }
serde-inline-default = "0.1.1"
derivative = "2.2.0"
2023-06-27 22:36:41 +03:00
[dev-dependencies]
env_logger = "0.10"
test-log = "0.2.12"
2023-06-30 09:16:31 +03:00
tokio = { version = "1.29.1", features = ["full", "test-util"] }
2023-06-25 02:43:11 +03:00
tracing = {version = "0.1", default-features = false}
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}