Remove mount from default features

rage-mount does not work on Windows, so instead make it optional.
This commit is contained in:
Jack Grigg 2019-10-31 07:59:29 +00:00
parent 14eb033f9f
commit 4620b243f0
No known key found for this signature in database
GPG key ID: 9E8255172BBF9898
2 changed files with 5 additions and 258 deletions

View file

@ -56,7 +56,11 @@ zip = { version = "0.5", optional = true }
man = "0.3"
[features]
default = ["cli", "mount"]
default = ["cli"]
cli-common = ["dialoguer", "dirs", "gumdrop"]
cli = ["cli-common", "chrono", "console", "minreq"]
mount = ["cli-common", "env_logger", "fuse_mt", "libc", "log", "tar", "time", "zip"]
[[bin]]
name = "rage-mount"
required-features = ["mount"]