From b9e6926a405ea7d09447b80a96c68b9312f1fa8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Sep 2022 15:37:49 +0000 Subject: [PATCH] Bump simplelog from 0.9.0 to 0.12.0 Bumps [simplelog](https://github.com/drakulix/simplelog.rs) from 0.9.0 to 0.12.0. - [Release notes](https://github.com/drakulix/simplelog.rs/releases) - [Changelog](https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/drakulix/simplelog.rs/compare/v0.9.0...v0.12.0) --- updated-dependencies: - dependency-name: simplelog dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 ++++++++++++++++++++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 41 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 446c095..7f546d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -160,7 +160,7 @@ dependencies = [ "libc", "num-integer", "num-traits", - "time", + "time 0.1.43", "winapi", ] @@ -571,7 +571,7 @@ dependencies = [ "radio-sx128x", "rand", "rand_core", - "simplelog 0.9.0", + "simplelog 0.12.0", "smoltcp", "structopt", "strum", @@ -676,6 +676,15 @@ dependencies = [ "autocfg", ] +[[package]] +name = "num_threads" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +dependencies = [ + "libc", +] + [[package]] name = "object" version = "0.27.1" @@ -1038,6 +1047,17 @@ dependencies = [ "termcolor", ] +[[package]] +name = "simplelog" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786" +dependencies = [ + "log", + "termcolor", + "time 0.3.14", +] + [[package]] name = "smallvec" version = "1.8.0" @@ -1251,6 +1271,24 @@ dependencies = [ "winapi", ] +[[package]] +name = "time" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b" +dependencies = [ + "itoa", + "libc", + "num_threads", + "time-macros", +] + +[[package]] +name = "time-macros" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" + [[package]] name = "toml" version = "0.5.8" diff --git a/Cargo.toml b/Cargo.toml index 3b030d3..c6d127e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ optional = true [dev-dependencies] radio = { version = "0.11.1", features = ["mock"] } linux-embedded-hal = "0.4.0-alpha.2" -simplelog = "0.9.0" +simplelog = "0.12.0" anyhow = "1.0.40" structopt = "0.3.21" radio-sx128x = "0.18.0"