Cargo.toml (1058B)
1 [package] 2 name = "depolymerizer-bitcoin" 3 description = "Bitcoin depolymerizer" 4 version.workspace = true 5 edition.workspace = true 6 authors.workspace = true 7 homepage.workspace = true 8 repository.workspace = true 9 license-file.workspace = true 10 11 [dependencies] 12 bech32 = "0.12.0" 13 serde_repr = "0.1.16" 14 depolymerizer-common.workspace = true 15 bitcoin.workspace = true 16 clap.workspace = true 17 serde.workspace = true 18 serde_json = {workspace = true, features = ["raw_value"]} 19 thiserror.workspace = true 20 hex.workspace = true 21 anyhow.workspace = true 22 taler-api.workspace = true 23 taler-build.workspace = true 24 taler-common.workspace = true 25 failure-injection.workspace = true 26 sqlx.workspace = true 27 tokio.workspace = true 28 tracing.workspace = true 29 axum.workspace = true 30 base64.workspace = true 31 rand.workspace = true 32 url.workspace = true 33 jiff.workspace = true 34 compact_str.workspace = true 35 owo-colors.workspace = true 36 taler-test-utils.workspace = true 37 38 [dev-dependencies] 39 criterion.workspace = true 40 41 [[bench]] 42 name = "metadata" 43 harness = false