mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-19 13:44:55 +01:00
chore: Update rust-version (MSRV) to 1.75.0 (#623)
This commit is contained in:
@@ -7,18 +7,18 @@ description = "Core Cashu Development Kit library implementing the Cashu protoco
|
||||
license = "MIT"
|
||||
homepage = "https://github.com/cashubtc/cdk"
|
||||
repository = "https://github.com/cashubtc/cdk.git"
|
||||
rust-version = "1.63.0" # MSRV
|
||||
rust-version = "1.75.0" # MSRV
|
||||
|
||||
|
||||
[features]
|
||||
http_subscription = ["cdk/http_subscription"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1"
|
||||
axum = "0.6.20"
|
||||
rand = "0.8.5"
|
||||
bip39 = { version = "2.0", features = ["rand"] }
|
||||
anyhow = "1"
|
||||
async-trait.workspace = true
|
||||
axum.workspace = true
|
||||
rand.workspace = true
|
||||
bip39 = { workspace = true, features = ["rand"] }
|
||||
anyhow.workspace = true
|
||||
cashu = { path = "../cashu", features = ["mint", "wallet"] }
|
||||
cdk = { path = "../cdk", features = ["mint", "wallet"] }
|
||||
cdk-cln = { path = "../cdk-cln" }
|
||||
@@ -27,42 +27,34 @@ cdk-axum = { path = "../cdk-axum" }
|
||||
cdk-sqlite = { path = "../cdk-sqlite" }
|
||||
cdk-redb = { path = "../cdk-redb" }
|
||||
cdk-fake-wallet = { path = "../cdk-fake-wallet" }
|
||||
tower-http = { version = "0.4.4", features = ["cors"] }
|
||||
futures = { version = "0.3.28", default-features = false, features = [
|
||||
futures = { workspace = true, default-features = false, features = [
|
||||
"executor",
|
||||
] }
|
||||
once_cell = "1.19.0"
|
||||
uuid = { version = "1", features = ["v4"] }
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
once_cell.workspace = true
|
||||
uuid.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
# ln-regtest-rs = { path = "../../../../ln-regtest-rs" }
|
||||
ln-regtest-rs = { git = "https://github.com/thesimplekid/ln-regtest-rs", rev = "bf09ad6" }
|
||||
ln-regtest-rs = { git = "https://github.com/thesimplekid/ln-regtest-rs", rev = "ed24716" }
|
||||
lightning-invoice = { version = "0.32.0", features = ["serde", "std"] }
|
||||
tracing = { version = "0.1", default-features = false, features = [
|
||||
"attributes",
|
||||
"log",
|
||||
] }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||
tracing.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
tokio-tungstenite.workspace = true
|
||||
tower-http = { workspace = true, features = ["cors"] }
|
||||
tower-service = "0.3.3"
|
||||
tokio-tungstenite = "0.24.0"
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
tokio = { version = "1", features = [
|
||||
"rt-multi-thread",
|
||||
"time",
|
||||
"macros",
|
||||
"sync",
|
||||
] }
|
||||
tokio.workspace = true
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
tokio = { version = "1", features = ["rt", "macros", "sync", "time"] }
|
||||
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }
|
||||
getrandom = { version = "0.2", features = ["js"] }
|
||||
instant = { version = "0.1", features = ["wasm-bindgen", "inaccurate"] }
|
||||
instant = { workspace = true, features = ["wasm-bindgen", "inaccurate"] }
|
||||
|
||||
[dev-dependencies]
|
||||
bip39 = { version = "2.0", features = ["rand"] }
|
||||
anyhow = "1"
|
||||
bip39 = { workspace = true, features = ["rand"] }
|
||||
anyhow.workspace = true
|
||||
cdk = { path = "../cdk", features = ["mint", "wallet"] }
|
||||
cdk-axum = { path = "../cdk-axum" }
|
||||
cdk-fake-wallet = { path = "../cdk-fake-wallet" }
|
||||
tower-http = { version = "0.4.4", features = ["cors"] }
|
||||
tower-http = { workspace = true, features = ["cors"] }
|
||||
|
||||
@@ -67,7 +67,6 @@ pub async fn attempt_to_swap_pending(wallet: &Wallet) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[allow(clippy::incompatible_msrv)]
|
||||
pub async fn wait_for_mint_to_be_paid(
|
||||
wallet: &Wallet,
|
||||
mint_quote_id: &str,
|
||||
|
||||
@@ -110,19 +110,22 @@ async fn test_regtest_mint_melt_round_trip() -> Result<()> {
|
||||
let melt = wallet.melt_quote(invoice, None).await?;
|
||||
|
||||
write
|
||||
.send(Message::Text(serde_json::to_string(&json!({
|
||||
"jsonrpc": "2.0",
|
||||
"id": 2,
|
||||
"method": "subscribe",
|
||||
"params": {
|
||||
"kind": "bolt11_melt_quote",
|
||||
"filters": [
|
||||
melt.id.clone(),
|
||||
],
|
||||
"subId": "test-sub",
|
||||
}
|
||||
.send(Message::Text(
|
||||
serde_json::to_string(&json!({
|
||||
"jsonrpc": "2.0",
|
||||
"id": 2,
|
||||
"method": "subscribe",
|
||||
"params": {
|
||||
"kind": "bolt11_melt_quote",
|
||||
"filters": [
|
||||
melt.id.clone(),
|
||||
],
|
||||
"subId": "test-sub",
|
||||
}
|
||||
|
||||
}))?))
|
||||
}))?
|
||||
.into(),
|
||||
))
|
||||
.await?;
|
||||
|
||||
assert_eq!(
|
||||
|
||||
Reference in New Issue
Block a user