From 3bf1a3b28f0a904ba52c0c0b7d25cecdfafa4804 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Sun, 8 Sep 2024 22:11:15 +0100 Subject: [PATCH] chore: version cdk in other crates --- crates/cdk-axum/Cargo.toml | 2 +- crates/cdk-cli/Cargo.toml | 6 +++--- crates/cdk-cln/Cargo.toml | 2 +- crates/cdk-fake-wallet/Cargo.toml | 2 +- crates/cdk-integration-tests/Cargo.toml | 2 +- crates/cdk-lnbits/Cargo.toml | 2 +- crates/cdk-lnd/Cargo.toml | 2 +- crates/cdk-mintd/Cargo.toml | 20 ++++++++++---------- crates/cdk-phoenixd/Cargo.toml | 2 +- crates/cdk-redb/Cargo.toml | 2 +- crates/cdk-rexie/Cargo.toml | 2 +- crates/cdk-sqlite/Cargo.toml | 2 +- crates/cdk-strike/Cargo.toml | 2 +- misc/justfile.custom.just | 2 +- 14 files changed, 25 insertions(+), 25 deletions(-) diff --git a/crates/cdk-axum/Cargo.toml b/crates/cdk-axum/Cargo.toml index 221d86d2..544d441f 100644 --- a/crates/cdk-axum/Cargo.toml +++ b/crates/cdk-axum/Cargo.toml @@ -12,7 +12,7 @@ description = "Cashu CDK axum webserver" anyhow = "1" async-trait = "0.1" axum = "0.6.20" -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } tokio = { version = "1", default-features = false } tower-http = { version = "0.4.4", features = ["cors"] } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } diff --git a/crates/cdk-cli/Cargo.toml b/crates/cdk-cli/Cargo.toml index 2025a48d..bd3b26b0 100644 --- a/crates/cdk-cli/Cargo.toml +++ b/crates/cdk-cli/Cargo.toml @@ -14,9 +14,9 @@ rust-version = "1.63.0" # MSRV [dependencies] anyhow = "1" bip39 = "2.0" -cdk = { path = "../cdk", default-features = false, features = ["wallet"] } -cdk-redb = { path = "../cdk-redb", default-features = false, features = ["wallet"] } -cdk-sqlite = { path = "../cdk-sqlite", default-features = false, features = ["wallet"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["wallet"]} +cdk-redb = { path = "../cdk-redb", version = "0.4.0", default-features = false, features = ["wallet"] } +cdk-sqlite = { path = "../cdk-sqlite", version = "0.4.0", default-features = false, features = ["wallet"] } clap = { version = "4.4.8", features = ["derive", "env", "default"] } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = "1" diff --git a/crates/cdk-cln/Cargo.toml b/crates/cdk-cln/Cargo.toml index 751e51dc..946aa55f 100644 --- a/crates/cdk-cln/Cargo.toml +++ b/crates/cdk-cln/Cargo.toml @@ -12,7 +12,7 @@ description = "CDK ln backend for cln" [dependencies] async-trait = "0.1" bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30 -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } cln-rpc = "0.1.9" futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } diff --git a/crates/cdk-fake-wallet/Cargo.toml b/crates/cdk-fake-wallet/Cargo.toml index 695cb3fd..647329aa 100644 --- a/crates/cdk-fake-wallet/Cargo.toml +++ b/crates/cdk-fake-wallet/Cargo.toml @@ -12,7 +12,7 @@ description = "CDK fake ln backend" [dependencies] async-trait = "0.1.74" bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30 -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } diff --git a/crates/cdk-integration-tests/Cargo.toml b/crates/cdk-integration-tests/Cargo.toml index f6b69d9a..ed265eeb 100644 --- a/crates/cdk-integration-tests/Cargo.toml +++ b/crates/cdk-integration-tests/Cargo.toml @@ -18,7 +18,7 @@ axum = "0.6.20" rand = "0.8.5" bip39 = { version = "2.0", features = ["rand"] } anyhow = "1" -cdk = { path = "../cdk", features = ["mint", "wallet"] } +cdk = { path = "../cdk", version = "0.3.0", features = ["mint", "wallet"] } cdk-axum = { path = "../cdk-axum"} cdk-fake-wallet = { path = "../cdk-fake-wallet" } tower-http = { version = "0.4.4", features = ["cors"] } diff --git a/crates/cdk-lnbits/Cargo.toml b/crates/cdk-lnbits/Cargo.toml index ddda8c45..0ff945d5 100644 --- a/crates/cdk-lnbits/Cargo.toml +++ b/crates/cdk-lnbits/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1" anyhow = "1" axum = "0.6.20" bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30 -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } diff --git a/crates/cdk-lnd/Cargo.toml b/crates/cdk-lnd/Cargo.toml index 38fab9ea..e98e65e0 100644 --- a/crates/cdk-lnd/Cargo.toml +++ b/crates/cdk-lnd/Cargo.toml @@ -11,7 +11,7 @@ description = "CDK ln backend for lnd" [dependencies] async-trait = "0.1" anyhow = "1" -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version= "0.4.0", default-features = false, features = ["mint"] } fedimint-tonic-lnd = "0.2.0" futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } diff --git a/crates/cdk-mintd/Cargo.toml b/crates/cdk-mintd/Cargo.toml index e7d2127a..3305b6a0 100644 --- a/crates/cdk-mintd/Cargo.toml +++ b/crates/cdk-mintd/Cargo.toml @@ -12,16 +12,16 @@ description = "CDK mint binary" [dependencies] anyhow = "1" axum = "0.6.20" -cdk = { path = "../cdk", default-features = false, features = ["mint"] } -cdk-redb = { path = "../cdk-redb", default-features = false, features = ["mint"] } -cdk-sqlite = { path = "../cdk-sqlite", default-features = false, features = ["mint"] } -cdk-cln = { path = "../cdk-cln", default-features = false } -cdk-lnbits = { path = "../cdk-lnbits", default-features = false } -cdk-phoenixd = { path = "../cdk-phoenixd", default-features = false } -cdk-lnd = { path = "../cdk-lnd", default-features = false } -cdk-fake-wallet = { path = "../cdk-fake-wallet", default-features = false } -cdk-strike = { path = "../cdk-strike" } -cdk-axum = { path = "../cdk-axum", default-features = false } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } +cdk-redb = { path = "../cdk-redb", version = "0.4.0", default-features = false, features = ["mint"] } +cdk-sqlite = { path = "../cdk-sqlite", version = "0.4.0", default-features = false, features = ["mint"] } +cdk-cln = { path = "../cdk-cln", version = "0.4.0", default-features = false } +cdk-lnbits = { path = "../cdk-lnbits", version = "0.4.0", default-features = false } +cdk-phoenixd = { path = "../cdk-phoenixd", version = "0.4.0", default-features = false } +cdk-lnd = { path = "../cdk-lnd", version = "0.4.0", default-features = false } +cdk-fake-wallet = { path = "../cdk-fake-wallet", version = "0.4.0", default-features = false } +cdk-strike = { path = "../cdk-strike", version = "0.4.0" } +cdk-axum = { path = "../cdk-axum", version = "0.4.0", default-features = false } config = { version = "0.13.3", features = ["toml"] } clap = { version = "4.4.8", features = ["derive", "env", "default"] } tokio = { version = "1", default-features = false } diff --git a/crates/cdk-phoenixd/Cargo.toml b/crates/cdk-phoenixd/Cargo.toml index 98625db4..3f54ff90 100644 --- a/crates/cdk-phoenixd/Cargo.toml +++ b/crates/cdk-phoenixd/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1" anyhow = "1" axum = "0.6.20" bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30 -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } diff --git a/crates/cdk-redb/Cargo.toml b/crates/cdk-redb/Cargo.toml index 0f34e87a..ef30b128 100644 --- a/crates/cdk-redb/Cargo.toml +++ b/crates/cdk-redb/Cargo.toml @@ -17,7 +17,7 @@ wallet = ["cdk/wallet"] [dependencies] async-trait = "0.1" -cdk = { path = "../cdk", default-features = false } +cdk = { path = "../cdk", version = "0.4.0", default-features = false } redb = "2.1.0" thiserror = "1" tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } diff --git a/crates/cdk-rexie/Cargo.toml b/crates/cdk-rexie/Cargo.toml index 611b3988..671ea7cf 100644 --- a/crates/cdk-rexie/Cargo.toml +++ b/crates/cdk-rexie/Cargo.toml @@ -16,7 +16,7 @@ wallet = ["cdk/wallet"] [dependencies] rexie = "0.6.0" -cdk = { path = "../cdk", default-features = false } +cdk = { path = "../cdk", version = "0.4.0", default-features = false } async-trait = "0.1.74" tokio = { version = "1", default-features = false } serde = { version = "1", default-features = false, features = ["derive"] } diff --git a/crates/cdk-sqlite/Cargo.toml b/crates/cdk-sqlite/Cargo.toml index b9860817..00ff9b30 100644 --- a/crates/cdk-sqlite/Cargo.toml +++ b/crates/cdk-sqlite/Cargo.toml @@ -17,7 +17,7 @@ wallet = ["cdk/wallet"] [dependencies] async-trait = "0.1" -cdk = { path = "../cdk", default-features = false } +cdk = { path = "../cdk", version = "0.4.0", default-features = false } bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30 sqlx = { version = "0.6.3", default-features = false, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] } thiserror = "1" diff --git a/crates/cdk-strike/Cargo.toml b/crates/cdk-strike/Cargo.toml index dc1afb9a..415345b1 100644 --- a/crates/cdk-strike/Cargo.toml +++ b/crates/cdk-strike/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1" anyhow = "1" axum = "0.6.20" bitcoin = { version = "0.30", default-features = false } # lightning-invoice uses v0.30 -cdk = { path = "../cdk", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } diff --git a/misc/justfile.custom.just b/misc/justfile.custom.just index d364197d..8fde551f 100644 --- a/misc/justfile.custom.just +++ b/misc/justfile.custom.just @@ -56,7 +56,7 @@ clippy-each: echo done -release: +release m: #!/usr/bin/env bash set -euo pipefail