Bump log dependency to version 0.4.4. NFC.

Since 0.4.4, log uses #[macro_export(local_inner_macros)], which is
the right thing to do, but it breaks our CI because of a now-unused
\#[macro_use(log)].
v0.7.x
whitequark 2019-07-23 12:10:25 +00:00
parent 2902ca00c0
commit 10e251b0aa
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ autoexamples = false
[dependencies]
managed = { version = "0.7", default-features = false, features = ["map"] }
byteorder = { version = "1.0", default-features = false }
log = { version = "0.4", default-features = false, optional = true }
log = { version = "0.4.4", default-features = false, optional = true }
libc = { version = "0.2.18", optional = true }
bitflags = { version = "1.0", default-features = false }

View File

@ -104,7 +104,7 @@ extern crate libc;
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "log")]
#[macro_use(log, trace, debug)]
#[macro_use(trace, debug)]
extern crate log;
use core::fmt;