Merge branch 'expose-fuse-opt' into 'master'
Make FUSE feature can be opted out See merge request redox-os/installer!66
This commit is contained in:
+3
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user