[package] name = "instrumentation" version = "0.1.0" edition = "2021" license = "AGPL-3.0-or-later" rust-version = "1.72.1" [dependencies] # Cli args parser clap = { version = "4.4.6", features = ["derive"] } clap_lex = "0.6.0" common = { path = "../common" } # Bitcoin btc-wire = { path = "../btc-wire" } bitcoin = { version = "0.31.0", default-features = false, features = ["std"] } # Ethereum eth-wire = { path = "../eth-wire" } ethereum-types = { version = "0.14.1", default-features = false } hex = "0.4.3" # Wire Gateway ureq = { version = "2.5.0", features = ["json"] } # In memory deflate library libdeflater = "1.19.0" # Generate temporary files tempfile = "3.3.0" # RNG fastrand = "2.0.1" # terminal color owo-colors = "3.5.0" # Better backtrace color-backtrace = "0.6.0" # Send signal to child processes signal-child = "1.0.5" # Edit toml files rust-ini = "0.20.0" # Progress reporting indicatif = "0.17.7" thread-local-panic-hook = "0.1.0" [build-dependencies] clap_mangen = "0.2.14"