Make FUSE feature can be opted out

This commit is contained in:
Wildan M
2026-01-01 14:46:54 +07:00
parent 385696d84a
commit 846e8446e0
+3 -2
View File
@@ -35,7 +35,7 @@ pkgar-keys = { version = "0.1.19", optional = true }
rand = { version = "0.9", optional = true }
redox-pkg = { version = "0.2.9", features = ["indicatif"], optional = true }
redox_syscall = { version = "0.5.2", optional = true }
redoxfs = { version = "0.8", optional = true }
redoxfs = { version = "0.8", optional = true, default-features = false, features = ["std", "log"] }
rust-argon2 = { version = "0.8.2", optional = true }
serde = "1"
serde_derive = "1.0"
@@ -47,7 +47,7 @@ uuid = { version = "1.4", features = ["v4"], optional = true }
libredox = "0.1"
[features]
default = ["installer"]
default = ["installer", "fuse"]
installer = [
"arg_parser",
"fatfs",
@@ -64,6 +64,7 @@ installer = [
"termion",
"uuid",
]
fuse = ["redoxfs/fuse"]
[patch.crates-io]
# https://github.com/briansmith/ring/issues/1999