mirror of
https://github.com/aljazceru/cdk.git
synced 2026-02-08 22:55:54 +01:00
chore: version cdk in other crates
This commit is contained in:
@@ -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"] }
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -56,7 +56,7 @@ clippy-each:
|
||||
echo
|
||||
done
|
||||
|
||||
release:
|
||||
release m:
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
|
||||
Reference in New Issue
Block a user