web3-proxy/web3_proxy/Cargo.toml

110 lines
5.2 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"
2023-09-12 23:43:17 +03:00
version = "1.43.1"
2022-05-05 22:07:09 +03:00
edition = "2021"
# 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-08-03 10:16:54 +03:00
default = []
mimalloc = ["dep:mimalloc"]
rdkafka-src = ["rdkafka/cmake-build", "rdkafka/libz", "rdkafka/ssl-vendored", "rdkafka/zstd-pkg-config"]
tests-needing-docker = []
2023-08-03 10:16:54 +03:00
tokio-console = ["dep:tokio-console", "dep:console-subscriber"]
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-08-17 23:49:45 +03:00
anyhow = { version = "1.0.75", features = ["backtrace"] }
arc-swap = { version = "1.6.0" }
2023-08-09 03:40:17 +03:00
argh = "0.1.12"
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-08-16 01:39:13 +03:00
async-trait = "0.1.73"
2023-08-05 02:19:43 +03:00
axum = { version = "0.6.20", features = ["headers", "tracing", "ws"] }
2023-09-11 21:33:10 +03:00
axum-client-ip = "0.4.2"
2023-07-18 19:54:56 +03:00
axum-macros = "0.3.8"
2023-09-11 21:33:10 +03:00
base64 = "0.21.4"
check-if-email-exists = "0.9.0"
2023-09-11 21:33:10 +03:00
chrono = { version = "0.4.30" }
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"
2023-07-22 00:27:43 +03:00
derivative = "2.2.0"
derive_more = { version = "0.99.17", features = ["nightly"] }
ethbloom = { version = "0.13.0" }
2023-09-11 21:33:10 +03:00
ethers = { version = "2.0.10", default-features = false, features = ["rustls", "ws"] }
fdlimit = "0.2.1"
2023-02-22 07:25:02 +03:00
fstrings = "0.2"
futures = { version = "0.3.28" }
glob = "0.3.1"
2023-09-02 02:57:31 +03:00
handlebars = "4.4.0"
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"
2023-08-31 06:59:06 +03:00
mimalloc = { version = "0.1.38", optional = true}
2023-08-08 01:40:59 +03:00
moka = { version = "0.11.3", default-features = false, features = ["atomic64", "future", "parking_lot", "quanta", "triomphe"] }
nanorand = { version = "0.7.0", default-features = false, features = ["std", "tls", "wyrand"] }
More balance tests (#182) * fix popularity contest * more info in the Debug for Web3Rpc * add frontend_requests and cache_misses to the Balance query * add more to balance and stats flushing and improved test coverage * it compiles * deserializer for Ulid to Uuid I think a wrapper type on Ulid that implements sea_orm::Value is probably better * rename variable to match struct name * add deserializer for Address -> Vec<u8> * sql sum returns a Decimal. need to convert to u64 * assert more * one log and assert more * log more * use a helper to get the user's rpc provider * this should be 2 now that we have a public and authed call * this should be zero. the public has the cache miss * instrument cu calcs * trace the value we took, not the default that replaced it * move usd_per_chain into config * remove some extra logging * use Arc::into_inner to maybe avoid a race * off by 1 * pass paid credits used instead of returning it this lets us use it to write to our user balance cache first. importantly, this keeps us from holding a write lock while writing to mysql * no cache misses expected in this test * actually check the admin * put the balance checks back now that the rest of the test works * archive request is being set incorrectly * wow howd we manage flipping the greater than sign on archive depth * move latest_balance and premium_credits_used to before any stats are emitted * lint * and build undoes the linting. fun i didnt even want to lint them in the first place, so this is fine * missed incrementing total_spent when not incrementing total_spent_paid_credits * use the credits on self * use the credits on self (pt 2) * fix type for 10 cu query * convert the requestmetadata on the other side of the channel * logs * viewing stats is allowed even without a balance * move paid_credits_used to AuthorizationChecks * wip * test_sum_credits_used finally passes * UserBalanceCache::get_or_insert * re-enable rpc_secret_key_cache * move invalidate to a helper function and always call it **after** the db is commited * fix PartialEq and Eq on RpcSecretKey * cargo upgrade
2023-07-12 10:35:07 +03:00
num = { version = "0.4.1" }
2023-07-21 04:23:04 +03:00
num-traits = "0.2.16"
2023-06-07 20:50:34 +03:00
once_cell = { version = "1.18.0" }
2023-08-22 22:59:53 +03:00
ordered-float = {version = "3.9.1" }
pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] }
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
2023-08-31 07:05:34 +03:00
rdkafka = { version = "0.34.0", features = ["tracing"] }
2023-09-02 20:20:01 +03:00
regex = "1.9.5"
2023-08-25 00:36:43 +03:00
reqwest = { version = "0.11.20", default-features = false, features = ["deflate", "gzip", "json", "tokio-rustls"] }
2023-07-25 07:59:37 +03:00
rmp-serde = "1.1.2"
2023-08-25 00:36:43 +03:00
rust_decimal = { version = "1.32.0", features = ["maths"] }
2023-08-31 06:59:06 +03:00
sentry = { version = "0.31.6", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "serde_json", "tracing"] }
sentry-tracing = "0.31.6"
serde = { version = "1.0.188" }
2023-07-22 00:27:43 +03:00
serde-inline-default = "0.1.1"
2023-09-11 21:33:10 +03:00
serde_json = { version = "1.0.106", default-features = false, features = ["raw_value"] }
serde_prometheus = "0.2.4"
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-08-17 23:49:45 +03:00
tokio = { version = "1.32.0", 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"] }
2023-09-11 21:33:10 +03:00
toml = "0.7.8"
2023-07-20 04:41:40 +03:00
tower = { version = "0.4.13", features = ["timeout", "tracing"] }
2023-09-02 02:57:31 +03:00
tower-http = { version = "0.4.4", features = ["cors", "normalize-path", "sensitive-headers", "trace"] }
tracing = "0.1"
2023-09-11 21:33:10 +03:00
ulid = { version = "1.1.0", features = ["rand", "uuid", "serde"] }
2023-08-31 06:59:06 +03:00
url = { version = "2.4.1" }
2023-07-18 19:54:56 +03:00
uuid = { version = "1.4.1", 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"] }
2023-06-27 22:36:41 +03:00
[dev-dependencies]
env_logger = "0.10"
test-log = "0.2.12"
2023-08-17 23:49:45 +03:00
tokio = { version = "1.32.0", 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"]}