Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidate workspace metadata #388

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ members = [
resolver = "2"

[workspace.package]
authors = ["CDK Developers"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
rust-version = "1.63.0" # MSRV
version = "0.3.0"
version = "0.4.0"

[workspace.metadata]
authors = ["CDK Developers"]
edition = "2021"
description = "Cashu Development Kit"
readme = "README.md"
repository = "https://github.com/cashubtc/cdk"
Expand Down
12 changes: 6 additions & 6 deletions crates/cdk-axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "cdk-axum"
version = "0.4.0"
edition = "2021"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
description = "Cashu CDK axum webserver"

[dependencies]
anyhow = "1"
async-trait = "0.1"
axum = "0.6.20"
cdk = { path = "../cdk", version = "0.4.0", default-features = false, features = ["mint"] }
cdk = { path = "../cdk", default-features = false, features = ["mint"] }
tokio = { version = "1", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
futures = { version = "0.3.28", default-features = false }
18 changes: 9 additions & 9 deletions crates/cdk-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "cdk-cli"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "Cashu cli wallet built on CDK"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[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", 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"] }
clap = { version = "4.4.8", features = ["derive", "env", "default"] }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = "1"
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-cln/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "cdk-cln"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
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", default-features = false, features = ["mint"] }
cln-rpc = "0.2.0"
futures = { version = "0.3.28", default-features = false }
tokio = { version = "1", default-features = false }
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-fake-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "cdk-fake-wallet"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
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", 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"] }
Expand Down
16 changes: 8 additions & 8 deletions crates/cdk-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "cdk-integration-tests"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "Core Cashu Development Kit library implementing the Cashu protocol"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV


Expand All @@ -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"}
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-lnbits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cdk-lnbits"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
description = "CDK ln backend for lnbits"

Expand All @@ -14,7 +14,7 @@ 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", 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"] }
Expand Down
12 changes: 6 additions & 6 deletions crates/cdk-lnd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cdk-lnd"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "CDK ln backend for lnd"

[dependencies]
Expand Down
32 changes: 16 additions & 16 deletions crates/cdk-mintd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[package]
name = "cdk-mintd"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
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", 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 }
config = { version = "0.13.3", features = ["toml"] }
clap = { version = "4.4.8", features = ["derive", "env", "default"] }
tokio = { version = "1", default-features = false }
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-phoenixd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cdk-phoenixd"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
description = "CDK ln backend for phoenixd"

Expand All @@ -14,7 +14,7 @@ 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", 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"] }
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-redb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "cdk-redb"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "Redb storage backend for CDK"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.66.0" # MSRV

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -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", default-features = false }
redb = "2.1.0"
thiserror = "1"
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-rexie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "cdk-rexie"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "Indexdb storage backend for CDK in the browser"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -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", default-features = false }
async-trait = "0.1.74"
tokio = { version = "1", default-features = false }
serde = { version = "1", default-features = false, features = ["derive"] }
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "cdk-sqlite"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
version.workspace = true
edition.workspace = true
authors.workspace = true
description = "SQLite storage backend for CDK"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.66.0" # MSRV

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -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", 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"
Expand Down
14 changes: 7 additions & 7 deletions crates/cdk-strike/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cdk-strike"
version = "0.4.0"
edition = "2021"
authors = ["CDK Developers"]
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version = "1.63.0" # MSRV
description = "CDK ln backend for Strike api"

Expand All @@ -14,7 +14,7 @@ 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", 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"] }
Expand Down
Loading
Loading