2022-05-05 22:07:09 +03:00
|
|
|
[package]
|
2022-08-06 08:46:33 +03:00
|
|
|
name = "web3_proxy"
|
2022-05-05 22:07:09 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
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-05-05 22:07:09 +03:00
|
|
|
[dependencies]
|
2022-07-26 07:53:38 +03:00
|
|
|
redis-cell-client = { path = "../redis-cell-client" }
|
|
|
|
entities = { path = "../entities" }
|
|
|
|
migration = { path = "../migration" }
|
|
|
|
|
2022-08-07 09:48:57 +03:00
|
|
|
anyhow = { version = "1.0.60", features = ["backtrace"] }
|
2022-08-03 03:27:32 +03:00
|
|
|
arc-swap = "1.5.1"
|
2022-07-07 00:42:31 +03:00
|
|
|
argh = "0.1.8"
|
2022-08-03 03:27:26 +03:00
|
|
|
axum = { version = "0.5.13", features = ["serde_json", "tokio-tungstenite", "ws"] }
|
2022-07-07 06:22:09 +03:00
|
|
|
axum-client-ip = "0.2.0"
|
2022-07-19 04:31:12 +03:00
|
|
|
counter = "0.5.6"
|
2022-05-29 04:27:15 +03:00
|
|
|
dashmap = "5.3.4"
|
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-05-05 22:07:09 +03:00
|
|
|
futures = { version = "0.3.21", features = ["thread-pool"] }
|
2022-08-05 22:22:23 +03:00
|
|
|
fstrings = "0.2.3"
|
2022-07-23 02:26:04 +03:00
|
|
|
hashbrown = { version = "0.12.3", features = ["serde"] }
|
2022-07-22 08:11:26 +03:00
|
|
|
indexmap = "1.9.1"
|
2022-05-15 04:51:24 +03:00
|
|
|
linkedhashmap = { path = "../linkedhashmap", features = ["inline-more"] }
|
2022-07-07 00:42:31 +03:00
|
|
|
notify = "4.0.17"
|
2022-07-11 22:16:18 +03:00
|
|
|
num = "0.4.0"
|
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"
|
2022-06-14 07:04:14 +03:00
|
|
|
reqwest = { version = "0.11.11", default-features = false, features = ["json", "tokio-rustls"] }
|
2022-05-05 22:07:09 +03:00
|
|
|
rustc-hash = "1.1.0"
|
2022-08-03 03:27:26 +03:00
|
|
|
siwe = "0.4.1"
|
2022-07-26 07:58:37 +03:00
|
|
|
sea-orm = { version = "0.9.1", features = ["macros"] }
|
2022-08-04 04:10:27 +03:00
|
|
|
serde = { version = "1.0.142", features = [] }
|
|
|
|
serde_json = { version = "1.0.83", default-features = false, features = ["alloc", "raw_value"] }
|
2022-07-25 21:36:15 +03:00
|
|
|
tokio = { version = "1.20.1", features = ["full", "tracing"] }
|
2022-08-06 03:07:12 +03:00
|
|
|
# TODO: make sure this uuid version matches what is in sea orm. PR on sea orm to put builder into prelude
|
2022-08-05 22:22:23 +03:00
|
|
|
uuid = "1.1.2"
|
2022-05-05 22:07:09 +03:00
|
|
|
toml = "0.5.9"
|
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-05-05 22:07:09 +03:00
|
|
|
url = "2.2.2"
|
2022-06-18 10:06:54 +03:00
|
|
|
tower = "0.4.13"
|
2022-06-14 07:04:14 +03:00
|
|
|
tokio-stream = { version = "0.1.9", features = ["sync"] }
|