Make arg_parser non-optional

It is used by a Debug impl in the config code.
This commit is contained in:
bjorn3
2026-03-11 21:01:48 +01:00
parent 474ff08431
commit e61506c50f
+1 -2
View File
@@ -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",