From e61506c50fbefcc774ec02bc8ac3ea3e047e7316 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Wed, 11 Mar 2026 21:01:48 +0100 Subject: [PATCH] Make arg_parser non-optional It is used by a Debug impl in the config code. --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 26bdb55931..b0656df580 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ path = "src/lib.rs" [dependencies] anyhow = "1" -arg_parser = { version = "0.1.0", optional = true } +arg_parser = "0.1.0" fatfs = { version = "0.3.0", optional = true } fscommon = { version = "0.1.1", optional = true } gpt = { version = "3.0.0", optional = true } @@ -50,7 +50,6 @@ ring = "=0.17.8" [features] default = ["installer", "fuse"] installer = [ - "arg_parser", "fatfs", "fscommon", "gpt",