Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: smoltcp-rs/smoltcp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1387d4011c8c
Choose a base ref
...
head repository: smoltcp-rs/smoltcp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 61a42d4bf2b0
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jul 23, 2019

  1. 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)].
    whitequark committed Jul 23, 2019
    Copy the full SHA
    61a42d4 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 Cargo.toml
  2. +1 −1 src/lib.rs
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 }

2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;