2023-08-03 10:16:54 +03:00
|
|
|
[package]
|
|
|
|
name = "web3_proxy_cli"
|
2023-08-16 02:37:53 +03:00
|
|
|
version = "1.42.7"
|
2023-08-03 10:16:54 +03:00
|
|
|
edition = "2021"
|
|
|
|
default-run = "web3_proxy_cli"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
deadlock_detection = ["parking_lot/deadlock_detection"]
|
|
|
|
mimalloc = ["web3_proxy/mimalloc"]
|
|
|
|
rdkafka-src = ["web3_proxy/rdkafka-src"]
|
|
|
|
tests-needing-docker = ["web3_proxy/tests-needing-docker"]
|
|
|
|
tokio-console = ["web3_proxy/tokio-console"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
web3_proxy = { path = "../web3_proxy" }
|
|
|
|
|
|
|
|
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
|
|
|
|
prettytable = "0.10.0"
|
2023-08-08 01:40:59 +03:00
|
|
|
serde = { version = "1.0.183" }
|
2023-08-16 01:39:13 +03:00
|
|
|
serde_json = { version = "1.0.105", default-features = false, features = ["raw_value"] }
|
2023-08-03 10:16:54 +03:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.10"
|
|
|
|
test-log = "0.2.12"
|
2023-08-16 01:39:13 +03:00
|
|
|
tokio = { version = "1.31.0", features = ["full", "test-util"] }
|
2023-08-03 10:16:54 +03:00
|
|
|
tracing = {version = "0.1", default-features = false}
|
|
|
|
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
|