diff --git a/Cargo.toml b/Cargo.toml index 9977db527c..4a0c822739 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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