chore: Update rust-version (MSRV) to 1.75.0 (#623)

This commit is contained in:
thesimplekid
2025-03-05 10:32:41 +00:00
committed by GitHub
parent 0cd1d6a194
commit e84d6ea7ab
51 changed files with 426 additions and 1037 deletions

View File

@@ -7,31 +7,28 @@ description = "SQLite storage backend for CDK"
license = "MIT"
homepage = "https://github.com/cashubtc/cdk"
repository = "https://github.com/cashubtc/cdk.git"
rust-version = "1.66.0" # MSRV
rust-version = "1.75.0" # MSRV
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["mint", "wallet"]
mint = []
wallet = []
mint = ["cdk-common/mint"]
wallet = ["cdk-common/wallet"]
[dependencies]
async-trait = "0.1"
cdk-common = { path = "../cdk-common", version = "0.7.1" }
bitcoin = { version = "0.32.2", default-features = false }
async-trait.workspace = true
cdk-common.workspace = true
bitcoin.workspace = true
sqlx = { version = "0.6.3", default-features = false, features = [
"runtime-tokio-rustls",
"sqlite",
"sqlite",
"macros",
"migrate",
"uuid",
] }
thiserror = "1"
tokio = { version = "1", features = ["time", "macros", "sync"] }
tracing = { version = "0.1", default-features = false, features = [
"attributes",
"log",
] }
serde_json = "1"
lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
uuid = { version = "1", features = ["v4", "serde"] }
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
serde_json.workspace = true
lightning-invoice.workspace = true
uuid.workspace = true