web3-proxy/web3_proxy/Cargo.toml

109 lines
5.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"
2023-11-23 07:37:40 +03:00
version = "1.43.98"
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"]
2023-10-16 22:06:10 +03:00
rdkafka-src = ["dep:rdkafka", "rdkafka/cmake-build", "rdkafka/ssl-vendored"]
stripe = ["dep:async-stripe"]
tests-needing-docker = []
2022-07-07 00:42:31 +03:00
2022-05-05 22:07:09 +03:00
[dependencies]
deduped_broadcast = { path = "../deduped_broadcast" }
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
#ethers = { git = "https://github.com/llamanodes/ethers-rs/", rev = "eb68f5d60850008cd302762bd3a5a4bdcfecc713", default-features = false, features = ["openssl", "ws"] }
2023-10-11 09:04:42 +03:00
influxdb2 = { git = "https://github.com/llamanodes/influxdb2", default-features = false, features = ["rustls"], rev = "2d125128696a29d7e0b9abc052c928937e7c0579" }
2023-06-17 09:41:12 +03:00
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>
# TODO: this has features ethers which probably brings in things. make sure it has the minimal features
2023-10-07 08:54:18 +03:00
siwe = { git = "https://github.com/llamanodes/siwe-rs", branch = "for_web3_proxy", 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"
async-stream = "0.3.5"
2023-10-11 09:04:42 +03:00
async-stripe = { version = "0.25.2", default-features = false, features = ["billing", "checkout", "connect", "runtime-tokio-hyper-rustls", "webhook-events"], optional = true }
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-10-24 01:41:03 +03:00
base64 = "0.21.5"
bytes = "1.5.0"
chrono = { version = "0.4.31" }
2023-07-22 00:27:43 +03:00
derivative = "2.2.0"
derive_more = { version = "0.99.17", features = ["nightly"] }
2023-11-19 06:47:54 +03:00
ethers = { version = "2.0.11", default-features = false, features = ["rustls", "ws"] }
2023-11-10 04:49:53 +03:00
fdlimit = "0.3.0"
2023-02-22 07:25:02 +03:00
fstrings = "0.2"
2023-10-26 21:06:15 +03:00
futures = { version = "0.3.29" }
futures-util = "0.3.29"
glob = "0.3.1"
2023-11-10 04:49:53 +03:00
handlebars = "4.5.0"
2023-10-20 22:17:07 +03:00
hashbrown = { version = "0.14.2", features = ["serde", "nightly"] }
2023-11-19 06:47:54 +03:00
hdrhistogram = "7.5.4"
hostname = "0.3.1"
2023-11-15 01:48:37 +03:00
http = "0.2.11"
2023-06-27 07:07:25 +03:00
hyper = { version = "0.14.27", features = ["full", "nightly"] }
2023-10-24 01:41:03 +03:00
ipnet = { version = "2.9.0" }
2023-11-15 01:48:37 +03:00
itertools = "0.12.0"
listenfd = { version = "1.0.1", optional = true }
mimalloc = { version = "0.1.39", optional = true }
2023-10-04 05:07:21 +03:00
moka = { version = "0.12.1", default-features = false, features = ["atomic64", "future", "quanta"] }
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-10-08 01:21:32 +03:00
num-traits = "0.2.17"
2023-06-07 20:50:34 +03:00
once_cell = { version = "1.18.0" }
2023-10-11 01:53:52 +03:00
ordered-float = {version = "4.1.1" }
2023-10-11 09:04:42 +03:00
pagerduty-rs = { version = "0.1.6", default-features = false, features = ["async", "rustls", "sync"] }
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
2023-11-08 21:49:59 +03:00
rdkafka = { version = "0.36.0", default-features = false, features = ["tokio", "tracing"], optional = true }
2023-10-11 09:04:42 +03:00
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls"] }
2023-11-19 06:47:54 +03:00
rust_decimal = { version = "1.33.1" }
2023-11-15 01:48:37 +03:00
sentry = { version = "0.31.8", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "serde_json", "tracing"] }
sentry-tracing = "0.31.8"
2023-11-22 06:28:59 +03:00
serde = { version = "1.0.193" }
2023-07-22 00:27:43 +03:00
serde-inline-default = "0.1.1"
2023-11-01 05:08:26 +03:00
serde_json = { version = "1.0.108", default-features = false, features = ["raw_value"] }
2023-09-11 21:33:10 +03:00
serde_prometheus = "0.2.4"
2023-06-20 03:48:46 +03:00
strum = { version = "0.25.0", features = ["derive"] }
time = { version = "0.3" }
2023-11-10 04:49:53 +03:00
tokio = { version = "1.34.0", features = ["full", "tracing"] }
2023-05-11 23:25:55 +03:00
tokio-stream = { version = "0.1.14", features = ["sync"] }
2023-11-07 04:49:32 +03:00
toml = "0.8.8"
2023-09-02 02:57:31 +03:00
tower-http = { version = "0.4.4", features = ["cors", "normalize-path", "sensitive-headers", "trace"] }
tower-layer = "0.3.2"
tower-service = "0.3.2"
tracing = "0.1"
2023-09-11 21:33:10 +03:00
ulid = { version = "1.1.0", features = ["rand", "uuid", "serde"] }
2023-11-23 01:33:55 +03:00
url = { version = "2.5.0" }
2023-11-22 06:28:59 +03:00
uuid = { version = "1.6.1", default-features = false }
2023-05-23 01:43:39 +03:00
# TODO: why doesn't this work in dev-dependencies. i think because of how we split web3_proxy and web3_proxy_cli. im not sure that is even helping anymore
2023-10-13 07:49:55 +03:00
test-log = { version = "0.2.13", default-features = false, features = ["trace"] }
2023-06-27 22:36:41 +03:00
2023-09-19 00:31:58 +03:00
# # TODO: bring this back
# check-if-email-exists = "0.9.0"
2023-06-27 22:36:41 +03:00
[dev-dependencies]
env_logger = { version ="0.10", default-features = true, features = ["auto-color"] }
2023-11-10 04:49:53 +03:00
tokio = { version = "1.34.0", default-features = false, features = ["full", "test-util"] }
2023-06-25 02:43:11 +03:00
tracing = {version = "0.1", default-features = false}
tracing-subscriber = {version = "0.3", features = ["env-filter"]}