From d1f8ea4d781c21b7ec0a30baedf5155bbb7b8804 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux
Date: Tue, 21 Jul 2026 08:18:17 +0200 Subject: [PATCH] Cargo.toml: cookie-factory: disable default features, use "std" only The features ["std", "async"] are enabled by default, but inside the crates async code of cookie-factory is never used. --- Cargo.lock | 3 --- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a0ec1011..eef2df74 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -653,9 +653,6 @@ name = "cookie-factory" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2" -dependencies = [ - "futures", -] [[package]] name = "core-foundation-sys" diff --git a/Cargo.toml b/Cargo.toml index c36eb64f..b5af64a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ rand = "0.10" bech32 = "0.11" # Parsing -cookie-factory = "0.3.1" +cookie-factory = { version = "0.3.1", default-features = false, features = [ "std" ] } nom = { version = "8", default-features = false, features = ["alloc"] } # Secret management