From 906577f6a88d05c2456dc2a107fb577975ae7cd9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 12 Feb 2024 15:11:20 +0000 Subject: [PATCH] Update Rust crate time to 0.3.34 Signed-off-by: Cecylia Bocovich --- Cargo.lock | 16 ++++++++++++---- crates/lox-distributor/Cargo.toml | 2 +- crates/lox-library/Cargo.toml | 2 +- crates/lox-wasm/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dbd3c84..969b23a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1244,6 +1244,12 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + [[package]] name = "num-integer" version = "0.1.45" @@ -2110,12 +2116,13 @@ dependencies = [ [[package]] name = "time" -version = "0.3.31" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" +checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" dependencies = [ "deranged", "itoa", + "num-conv", "powerfmt", "serde", "time-core", @@ -2130,10 +2137,11 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" +checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774" dependencies = [ + "num-conv", "time-core", ] diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index ad0b5f4..02f4a86 100644 --- a/crates/lox-distributor/Cargo.toml +++ b/crates/lox-distributor/Cargo.toml @@ -20,7 +20,7 @@ base64 = "0.21.7" hyper = { version = "0.14.28", features = ["deprecated", "backports","server"] } hex_fmt = "0.3" futures = "0.3.30" -time = "0.3.31" +time = "0.3.34" tokio = { version = "1", features = ["full", "macros", "signal"] } rand = "0.8.5" reqwest = { version = "0.11", features = ["json", "stream"]} diff --git a/crates/lox-library/Cargo.toml b/crates/lox-library/Cargo.toml index 6a7fc4f..9a47cc1 100644 --- a/crates/lox-library/Cargo.toml +++ b/crates/lox-library/Cargo.toml @@ -27,7 +27,7 @@ lazy_static = "1" hex_fmt = "0.3" aes-gcm = { version = "0.10", features =["aes"]} base64 = "0.21" -time = "0.3.31" +time = "0.3.34" prometheus = "0.13.3" subtle = "2.5" thiserror = "1.0.57" diff --git a/crates/lox-wasm/Cargo.toml b/crates/lox-wasm/Cargo.toml index 9ebe153..edf385f 100644 --- a/crates/lox-wasm/Cargo.toml +++ b/crates/lox-wasm/Cargo.toml @@ -21,7 +21,7 @@ lazy_static = "1.4.0" lox-library = { path = "../lox-library", version = "0.1.0" } lox_utils = { path = "../lox-utils", version = "0.1.0" } wasm-bindgen = "0.2" -time = "0.3.31" +time = "0.3.34" serde_json = "1.0.113" console_error_panic_hook = "0.1.7"