From 4718e1f2106d543188675408681b4369728d416f Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Fri, 7 Jun 2019 09:57:43 -0400 Subject: [PATCH] Restrict some dependencies that are platform-specific. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 61bc1d5b..d4ff4fac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,12 +25,12 @@ lazy_static = "1" libc = "0.2.12" rand = "0.8" serde = { version = "1.0", features = ["rc"] } -tempfile = "3.4" uuid = { version = "1", features = ["v4"] } [target.'cfg(any(target_os = "linux", target_os = "openbsd", target_os = "freebsd"))'.dependencies] mio = { version = "0.8", features = ["os-ext"] } sc = { version = "0.2.2", optional = true } +tempfile = "3.4" [dev-dependencies] crossbeam-utils = "0.8"