From 62e46cf87c8cabdd43b1ddce9d37462c05bcbfc5 Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Tue, 13 Aug 2019 13:24:35 +0200 Subject: [PATCH] Force the std feature for log While trying to build this crate with the gecko feature rust complained about us using `log::set_boxed_logger` because it requires the std feature which was not explicitly set in that crate. --- components/style/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index 9c39a957796..f16fae3798a 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -46,7 +46,7 @@ indexmap = "1.0" itertools = "0.8" itoa = "0.4" lazy_static = "1" -log = "0.4" +log = { version = "0.4", features = ["std"] } malloc_size_of = { path = "../malloc_size_of" } malloc_size_of_derive = "0.1" matches = "0.1"