mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
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:
parent
9b24798390
commit
62e46cf87c
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue