web3-proxy/web3_proxy_cli/Cargo.toml

34 lines
1.2 KiB
TOML
Raw Normal View History

2023-08-03 10:16:54 +03:00
[package]
name = "web3_proxy_cli"
2023-12-05 21:55:45 +03:00
version = "1.43.100"
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 = ["tokio-console"]
2023-08-03 10:16:54 +03:00
deadlock_detection = ["parking_lot/deadlock_detection"]
mimalloc = ["web3_proxy/mimalloc"]
stripe = ["web3_proxy/stripe"]
2023-08-03 10:16:54 +03:00
rdkafka-src = ["web3_proxy/rdkafka-src"]
tests-needing-docker = ["web3_proxy/tests-needing-docker"]
tokio-console = ["dep:tokio-console", "dep:console-subscriber"]
2023-08-03 10:16:54 +03:00
[dependencies]
web3_proxy = { path = "../web3_proxy" }
console-subscriber = { version = "0.2.0", features = ["env-filter", "parking_lot"], optional = true }
2023-08-03 10:16:54 +03:00
parking_lot = { version = "0.12.1", features = ["arc_lock", "nightly"] }
prettytable = { version = "0.10.0", default-features = false }
2023-11-22 06:28:59 +03:00
serde = { version = "1.0.193" }
2023-11-01 05:08:26 +03:00
serde_json = { version = "1.0.108", default-features = false, features = ["raw_value"] }
tokio-console = { version = "0.1.10", optional = true }
2023-08-03 10:16:54 +03:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2023-08-03 10:16:54 +03:00
[dev-dependencies]
env_logger = { version ="0.10", default-features = false, features = ["auto-color"] }
2023-10-13 07:49:55 +03:00
test-log = { version ="0.2.13", default-features = false, features = ["trace"] }