diff --git a/Cargo.lock b/Cargo.lock index e59e726..cedf461 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -755,6 +755,12 @@ dependencies = [ "libc", ] +[[package]] +name = "serde" +version = "1.0.152" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" + [[package]] name = "signal-hook" version = "0.3.14" @@ -890,21 +896,32 @@ dependencies = [ [[package]] name = "time" -version = "0.3.14" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b" +checksum = "53250a3b3fed8ff8fd988587d8925d26a83ac3845d9e03b220b37f34c2b8d6c2" 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.4" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" +checksum = "a460aeb8de6dcb0f381e1ee05f1cd56fcf5a5f6eb8187ff3d8f0b11078d38b7c" +dependencies = [ + "time-core", +] [[package]] name = "tinyvec" diff --git a/Cargo.toml b/Cargo.toml index c744de8..eb5ba42 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ httparse = "1.7.1" clap = "3.2.18" log = "0.4.17" simplelog = "0.12.0" -time = "0.3.14" +time = "0.3.19" async-channel = "1.7.1"