e917a11d6c
* cargo upgrade --incompatible and update * first draft at suprisingly_large_refactor_to_get_ids_everywhere * put app in a task_local * ref cleanup * use a OnceLock instead of a tokio local * test more methods * APP isn't set in all tests * it compiles. tests fail. todos still open * use the app only when necessary * more tests. less panic * less verbose debug impl * short enum names * move kafka and secrets to their own files * main tests pass * add debug chain block time * helper for stats that ignores internal stats * Update Jenkinsfile (#223) * more tests --------- Co-authored-by: Pewxz <124064710+pewxz@users.noreply.github.com>
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "web3_proxy_cli"
|
|
version = "1.43.10"
|
|
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"
|
|
serde = { version = "1.0.188" }
|
|
serde_json = { version = "1.0.107", default-features = false, features = ["raw_value"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.10"
|
|
test-log = "0.2.12"
|
|
tokio = { version = "1.32.0", features = ["full", "test-util"] }
|
|
tracing = {version = "0.1", default-features = false}
|
|
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
|