Cargo.toml (732B)
1 [package] 2 name = "testbench" 3 version = "0.1.0" 4 edition.workspace = true 5 authors.workspace = true 6 homepage.workspace = true 7 repository.workspace = true 8 license-file.workspace = true 9 10 [dependencies] 11 # Cli args parser 12 clap.workspace = true 13 # Bitcoin 14 depolymerizer-bitcoin = { path = "../depolymerizer-bitcoin" } 15 bitcoin.workspace = true 16 # Wire Gateway 17 ureq = { version = "3.0.0", features = ["json"] } 18 # terminal color 19 owo-colors = "4.0.0" 20 # Edit toml files 21 rust-ini = "0.21.0" 22 # Progress reporting 23 indicatif = "0.18.0" 24 taler-common.workspace = true 25 taler-test-utils.workspace = true 26 tokio.workspace = true 27 anyhow.workspace = true 28 tracing-subscriber.workspace = true 29 tracing.workspace = true 30 sqlx.workspace = true 31 url.workspace = true