Disable crate in Windows + musl builds

This commit is contained in:
sharkdp 2019-09-15 18:20:36 +02:00 committed by David Peter
parent 1ab4e87dda
commit f55033818d
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,6 @@ ctrlc = "3.1"
humantime = "1.1.1"
lscolors = "0.6"
globset = "0.4"
jemallocator = "0.3.0"
[dependencies.clap]
version = "2.31.2"
@ -53,6 +52,9 @@ features = ["suggestions", "color", "wrap_help"]
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
libc = "0.2"
[target.'cfg(all(unix, not(target_os = "redox"), not(target_env = "musl")))'.dependencies]
jemallocator = "0.3.0"
[dev-dependencies]
diff = "0.1"
tempdir = "0.3"