Remove dirs crate from use in UWP builds.

This commit is contained in:
Josh Matthews 2019-06-11 09:02:40 -04:00
parent 237ef8da34
commit 3e22b52b47
7 changed files with 15 additions and 4 deletions

View file

@ -6,6 +6,9 @@ license = "MPL-2.0"
edition = "2018"
publish = false
[features]
uwp = []
[lib]
name = "servo_config"
path = "lib.rs"
@ -29,5 +32,5 @@ servo_config_plugins = { path = "../config_plugins" }
env_logger = "0.6"
std_test_override = { path = "../std_test_override" }
[target.'cfg(not(target_os = "android"))'.dependencies]
[target.'cfg(not(any(target_os = "android", feature = "uwp")))'.dependencies]
dirs = "1.0"