diff --git a/crates/cdk-axum/Cargo.toml b/crates/cdk-axum/Cargo.toml index ae458dd4..d1a6a3d0 100644 --- a/crates/cdk-axum/Cargo.toml +++ b/crates/cdk-axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-axum" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MIT" homepage = "https://github.com/cashubtc/cdk" @@ -12,7 +12,7 @@ description = "Cashu CDK axum webserver" anyhow = "1" async-trait = "0.1.83" axum = { version = "0.6.20", features = ["ws"] } -cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = [ +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = [ "mint", ] } tokio = { version = "1", default-features = false, features = ["io-util"] } diff --git a/crates/cdk-cli/Cargo.toml b/crates/cdk-cli/Cargo.toml index 45f0b113..a9ce0410 100644 --- a/crates/cdk-cli/Cargo.toml +++ b/crates/cdk-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-cli" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] description = "Cashu cli wallet built on CDK" @@ -14,9 +14,9 @@ rust-version = "1.63.0" # MSRV [dependencies] anyhow = "1" bip39 = "2.0" -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"] } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["wallet"]} +cdk-redb = { path = "../cdk-redb", version = "0.5.0", default-features = false, features = ["wallet"] } +cdk-sqlite = { path = "../cdk-sqlite", version = "0.5.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 a5c505ed..a92e6fe4 100644 --- a/crates/cdk-cln/Cargo.toml +++ b/crates/cdk-cln/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-cln" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -12,7 +12,7 @@ description = "CDK ln backend for cln" [dependencies] async-trait = "0.1" bitcoin = { version = "0.32.2", default-features = false } -cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["mint"] } cln-rpc = "0.2.0" 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 8d1b5dff..650a4604 100644 --- a/crates/cdk-fake-wallet/Cargo.toml +++ b/crates/cdk-fake-wallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-fake-wallet" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -12,7 +12,7 @@ description = "CDK fake ln backend" [dependencies] async-trait = "0.1.74" bitcoin = { version = "0.32.2", default-features = false } -cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tokio-util = { version = "0.7.11", default-features = false } diff --git a/crates/cdk-integration-tests/Cargo.toml b/crates/cdk-integration-tests/Cargo.toml index 8753408c..135186f3 100644 --- a/crates/cdk-integration-tests/Cargo.toml +++ b/crates/cdk-integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-integration-tests" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] description = "Core Cashu Development Kit library implementing the Cashu protocol" @@ -18,8 +18,8 @@ axum = "0.6.20" rand = "0.8.5" bip39 = { version = "2.0", features = ["rand"] } anyhow = "1" -cdk = { path = "../cdk", version = "0.4.0", features = ["mint", "wallet"] } -cdk-cln = { path = "../cdk-cln", version = "0.4.0" } +cdk = { path = "../cdk", features = ["mint", "wallet"] } +cdk-cln = { path = "../cdk-cln" } cdk-axum = { path = "../cdk-axum" } cdk-sqlite = { path = "../cdk-sqlite" } cdk-redb = { path = "../cdk-redb" } diff --git a/crates/cdk-lnbits/Cargo.toml b/crates/cdk-lnbits/Cargo.toml index ee9ba6d8..8725168b 100644 --- a/crates/cdk-lnbits/Cargo.toml +++ b/crates/cdk-lnbits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-lnbits" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -14,12 +14,10 @@ async-trait = "0.1" anyhow = "1" axum = "0.6.20" bitcoin = { version = "0.32.2", default-features = false } -cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tokio-util = { version = "0.7.11", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } thiserror = "1" -# lnbits-rs = "0.2.0" -# lnbits-rs = { path = "../../../../lnbits-rs" } -lnbits-rs = { git = "https://github.com/thesimplekid/lnbits-rs.git", rev = "9fff4d" } +lnbits-rs = "0.3.0" diff --git a/crates/cdk-lnd/Cargo.toml b/crates/cdk-lnd/Cargo.toml index e0e99329..37ccec5c 100644 --- a/crates/cdk-lnd/Cargo.toml +++ b/crates/cdk-lnd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-lnd" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -11,7 +11,7 @@ description = "CDK ln backend for lnd" [dependencies] async-trait = "0.1" anyhow = "1" -cdk = { path = "../cdk", version= "0.4.0", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version= "0.5.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 b12372ef..f3369d6f 100644 --- a/crates/cdk-mintd/Cargo.toml +++ b/crates/cdk-mintd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-mintd" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -12,16 +12,16 @@ description = "CDK mint binary" [dependencies] anyhow = "1" axum = "0.6.20" -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 } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["mint"] } +cdk-redb = { path = "../cdk-redb", version = "0.5.0", default-features = false, features = ["mint"] } +cdk-sqlite = { path = "../cdk-sqlite", version = "0.5.0", default-features = false, features = ["mint"] } +cdk-cln = { path = "../cdk-cln", version = "0.5.0", default-features = false } +cdk-lnbits = { path = "../cdk-lnbits", version = "0.5.0", default-features = false } +cdk-phoenixd = { path = "../cdk-phoenixd", version = "0.5.0", default-features = false } +cdk-lnd = { path = "../cdk-lnd", version = "0.5.0", default-features = false } +cdk-fake-wallet = { path = "../cdk-fake-wallet", version = "0.5.0", default-features = false } +cdk-strike = { path = "../cdk-strike", version = "0.5.0" } +cdk-axum = { path = "../cdk-axum", version = "0.5.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 } @@ -39,4 +39,4 @@ utoipa-swagger-ui = { version = "4", features = ["axum"], optional = true } rand = "0.8.5" [features] -swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"] \ No newline at end of file +swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"] diff --git a/crates/cdk-phoenixd/Cargo.toml b/crates/cdk-phoenixd/Cargo.toml index cfeb98b8..8052bffd 100644 --- a/crates/cdk-phoenixd/Cargo.toml +++ b/crates/cdk-phoenixd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-phoenixd" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -14,12 +14,11 @@ async-trait = "0.1" anyhow = "1" axum = "0.6.20" bitcoin = { version = "0.32.2", default-features = false } -cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tokio-util = { version = "0.7.11", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } thiserror = "1" -# phoenixd-rs = "0.3.0" -phoenixd-rs = { git = "https://github.com/thesimplekid/phoenixd-rs", rev = "22a44f0"} +phoenixd-rs = "0.4.0" uuid = { version = "1", features = ["v4"] } diff --git a/crates/cdk-redb/Cargo.toml b/crates/cdk-redb/Cargo.toml index d7ec6b50..68599c41 100644 --- a/crates/cdk-redb/Cargo.toml +++ b/crates/cdk-redb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-redb" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] description = "Redb storage backend for CDK" @@ -17,7 +17,7 @@ wallet = ["cdk/wallet"] [dependencies] async-trait = "0.1" -cdk = { path = "../cdk", version = "0.4.0", default-features = false } +cdk = { path = "../cdk", version = "0.5.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 671ea7cf..016b5ef7 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", version = "0.4.0", default-features = false } +cdk = { path = "../cdk", version = "0.5.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 e281ba48..398d9fe3 100644 --- a/crates/cdk-sqlite/Cargo.toml +++ b/crates/cdk-sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-sqlite" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] description = "SQLite storage backend for CDK" @@ -17,7 +17,7 @@ wallet = ["cdk/wallet"] [dependencies] async-trait = "0.1" -cdk = { path = "../cdk", version = "0.4.0", default-features = false } +cdk = { path = "../cdk", version = "0.5.0", default-features = false } bitcoin = { version = "0.32.2", default-features = false } 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 c1ccf737..7d963715 100644 --- a/crates/cdk-strike/Cargo.toml +++ b/crates/cdk-strike/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk-strike" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] license = "MIT" @@ -14,13 +14,11 @@ async-trait = "0.1" anyhow = "1" axum = "0.6.20" bitcoin = { version = "0.32.2", default-features = false } -cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] } +cdk = { path = "../cdk", version = "0.5.0", default-features = false, features = ["mint"] } futures = { version = "0.3.28", default-features = false } tokio = { version = "1", default-features = false } tokio-util = { version = "0.7.11", default-features = false } tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] } thiserror = "1" uuid = { version = "1", features = ["v4"] } -# strike-rs = "0.3.0" -# strike-rs = { path = "../../../../strike-rs" } -strike-rs = { git = "https://github.com/thesimplekid/strike-rs.git", rev = "c6167ce" } +strike-rs = "0.4.0" diff --git a/crates/cdk/Cargo.toml b/crates/cdk/Cargo.toml index 4d72da31..daf0c009 100644 --- a/crates/cdk/Cargo.toml +++ b/crates/cdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdk" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["CDK Developers"] description = "Core Cashu Development Kit library implementing the Cashu protocol"