From 188cfa639a171eef91ecc811d6286ffe58c9b7ea Mon Sep 17 00:00:00 2001 From: David Caseria Date: Tue, 14 May 2024 20:52:03 -0400 Subject: [PATCH] Fix cargo features --- .github/workflows/ci.yml | 2 -- .helix/languages.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3801c3af..8e2cd92e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,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 all-nuts, -p cdk-redb ] steps: @@ -65,7 +64,6 @@ jobs: -p cdk, -p cdk --no-default-features, -p cdk --no-default-features --features wallet, - -p cdk --no-default-features --features all-nuts, -p cdk-js ] steps: diff --git a/.helix/languages.toml b/.helix/languages.toml index 2a0f93b2..22210359 100644 --- a/.helix/languages.toml +++ b/.helix/languages.toml @@ -1,2 +1,2 @@ [language-server.rust-analyzer.config] -cargo = { features = [ "wallet", "mint", "all-nuts" ] } +cargo = { features = ["wallet", "mint"] }