From 4a28c692b32f2d2a3d3771062cc494a33a42bea2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 05:59:21 +0000 Subject: [PATCH] Bump simplelog from 0.9.0 to 0.12.1 Bumps [simplelog](https://github.com/drakulix/simplelog.rs) from 0.9.0 to 0.12.1. - [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.1) --- updated-dependencies: - dependency-name: simplelog dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 52 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 446c095..85669cb 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.1", "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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369" +dependencies = [ + "log", + "termcolor", + "time 0.3.20", +] + [[package]] name = "smallvec" version = "1.8.0" @@ -1251,6 +1271,35 @@ dependencies = [ "winapi", ] +[[package]] +name = "time" +version = "0.3.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" +dependencies = [ + "itoa", + "libc", + "num_threads", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + +[[package]] +name = "time-macros" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36" +dependencies = [ + "time-core", +] + [[package]] name = "toml" version = "0.5.8" diff --git a/Cargo.toml b/Cargo.toml index 3b030d3..b4ccc00 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.1" anyhow = "1.0.40" structopt = "0.3.21" radio-sx128x = "0.18.0"