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"