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, 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 = [] 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;