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.
This commit is contained in:
Bastien Orivel 2019-08-13 13:24:35 +02:00
parent 9b24798390
commit 62e46cf87c

View file

@ -46,7 +46,7 @@ indexmap = "1.0"
itertools = "0.8" itertools = "0.8"
itoa = "0.4" itoa = "0.4"
lazy_static = "1" lazy_static = "1"
log = "0.4" log = { version = "0.4", features = ["std"] }
malloc_size_of = { path = "../malloc_size_of" } malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = "0.1" malloc_size_of_derive = "0.1"
matches = "0.1" matches = "0.1"