diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-18T09·49+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-18T11·52+0000 |
commit | 71d6a02ca19857a06bc789f09c885e5cd77f7212 (patch) | |
tree | a64cf3e1e38da78b8c6ce0dda2483958545af016 /ops/journaldriver/Cargo.lock | |
parent | af512558e695605fdfc1b3ede407a6067e355e30 (diff) |
refactor(journaldriver): Use time crate directly instead of chrono r/3856
With this change, we still depend on chrono (through medallion), but but I'm going to try and fix that upstream as well. Change-Id: Iefd3d8578ea8870961107f3222dea7f936c2dd9a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5311 Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'ops/journaldriver/Cargo.lock')
-rw-r--r-- | ops/journaldriver/Cargo.lock | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/ops/journaldriver/Cargo.lock b/ops/journaldriver/Cargo.lock index 7e4c7923efe8..a75817843382 100644 --- a/ops/journaldriver/Cargo.lock +++ b/ops/journaldriver/Cargo.lock @@ -94,8 +94,7 @@ dependencies = [ "libc", "num-integer", "num-traits", - "serde", - "time", + "time 0.1.44", "winapi", ] @@ -112,7 +111,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80f6044740a4a516b8aac14c140cdf35c1a640b1bd6b98b6224e49143b2f1566" dependencies = [ "percent-encoding 2.1.0", - "time", + "time 0.1.44", ] [[package]] @@ -227,7 +226,6 @@ name = "journaldriver" version = "1.1.0" dependencies = [ "anyhow", - "chrono", "env_logger", "lazy_static", "log", @@ -237,6 +235,7 @@ dependencies = [ "serde_derive", "serde_json", "systemd", + "time 0.3.7", "ureq", ] @@ -344,6 +343,15 @@ dependencies = [ ] [[package]] +name = "num_threads" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" +dependencies = [ + "libc", +] + +[[package]] name = "once_cell" version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -597,6 +605,25 @@ dependencies = [ ] [[package]] +name = "time" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d" +dependencies = [ + "itoa", + "libc", + "num_threads", + "serde", + "time-macros", +] + +[[package]] +name = "time-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6" + +[[package]] name = "tinyvec" version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" |