From 75fc00a37f1c390b76455f4e5a03a2c91c397407 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Mon, 4 Nov 2024 19:55:20 +0000 Subject: [PATCH 1/3] fix: msrv pin url --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index b4078557..47e84631 100644 --- a/flake.nix +++ b/flake.nix @@ -139,6 +139,7 @@ cargo update -p bumpalo --precise 3.12.0 cargo update -p moka --precise 0.11.1 cargo update -p triomphe --precise 0.1.11 + cargo update -p url --precise 2.5.2 "; buildInputs = buildInputs ++ WASMInputs ++ [ msrv_toolchain ]; inherit nativeBuildInputs; @@ -160,6 +161,7 @@ cargo update -p tokio-stream --precise 0.1.15 cargo update -p serde_with --precise 3.1.0 cargo update -p reqwest --precise 0.12.4 + cargo update -p url --precise 2.5.2 "; buildInputs = buildInputs ++ WASMInputs ++ [ db_msrv_toolchain ]; inherit nativeBuildInputs; From 1fa10c6a02d2313a79ef81731fdc7d5d3d91e29c Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Mon, 4 Nov 2024 20:23:05 +0000 Subject: [PATCH 2/3] chore: remove swagger msrv --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37149ba2..8ed515c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,7 +144,6 @@ jobs: -p cdk --no-default-features, -p cdk --no-default-features --features wallet, -p cdk --no-default-features --features mint, - -p cdk --no-default-features --features "mint swagger", -p cdk-axum, -p cdk-strike, -p cdk-lnbits, From b53fa86a832b1695fc72b25eb9ffd1a3311b82b6 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Mon, 4 Nov 2024 20:35:39 +0000 Subject: [PATCH 3/3] chore: comment swagger msrv is not kept --- crates/cdk/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/cdk/Cargo.toml b/crates/cdk/Cargo.toml index e89311a5..81673861 100644 --- a/crates/cdk/Cargo.toml +++ b/crates/cdk/Cargo.toml @@ -13,6 +13,7 @@ license = "MIT" [features] default = ["mint", "wallet"] mint = ["dep:futures"] +# We do not commit to a MSRV with swagger enabled swagger = ["mint", "dep:utoipa"] wallet = ["dep:reqwest"] bench = []