From 38b97c769b5aa703277f2fdc722f216b14637c18 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 30 Aug 2023 18:04:11 +0000 Subject: [PATCH] Update Rust crate time to 0.3.28 --- Cargo.lock | 26 ++++++++++++++++++-------- crates/lox-distributor/Cargo.toml | 2 +- crates/lox-library/Cargo.toml | 2 +- crates/lox-wasm/Cargo.toml | 2 +- 4 files changed, 21 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1891f68..f27ea40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -456,6 +456,15 @@ dependencies = [ "syn", ] +[[package]] +name = "deranged" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" +dependencies = [ + "serde", +] + [[package]] name = "digest" version = "0.9.0" @@ -989,7 +998,7 @@ dependencies = [ "serde", "serde_json", "serde_with", - "time 0.3.23", + "time 0.3.28", "tokio", "zkp", ] @@ -1013,7 +1022,7 @@ dependencies = [ "statistical", "subtle", "thiserror", - "time 0.3.23", + "time 0.3.28", "zkp", ] @@ -1030,7 +1039,7 @@ dependencies = [ "lox_utils", "rand 0.7.3", "serde_json", - "time 0.3.23", + "time 0.3.28", "wasm-bindgen", "zkp", ] @@ -1732,7 +1741,7 @@ dependencies = [ "serde", "serde_json", "serde_with_macros", - "time 0.3.23", + "time 0.3.28", ] [[package]] @@ -1896,10 +1905,11 @@ dependencies = [ [[package]] name = "time" -version = "0.3.23" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446" +checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" dependencies = [ + "deranged", "itoa", "serde", "time-core", @@ -1914,9 +1924,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" [[package]] name = "time-macros" -version = "0.2.10" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4" +checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" dependencies = [ "time-core", ] diff --git a/crates/lox-distributor/Cargo.toml b/crates/lox-distributor/Cargo.toml index 2e2f4ea..d0f274c 100644 --- a/crates/lox-distributor/Cargo.toml +++ b/crates/lox-distributor/Cargo.toml @@ -16,7 +16,7 @@ base64 = "0.13.1" hyper = { version = "0.14.27", features = ["server"] } hex_fmt = "0.3" futures = "0.3.28" -time = "0.3.21" +time = "0.3.28" tokio = { version = "1", features = ["full", "macros", "signal"] } rand = "0.8.5" serde = { version = "1.0", features = ["derive", "rc"] } diff --git a/crates/lox-library/Cargo.toml b/crates/lox-library/Cargo.toml index 91d4829..3b9373e 100644 --- a/crates/lox-library/Cargo.toml +++ b/crates/lox-library/Cargo.toml @@ -24,7 +24,7 @@ lazy_static = "1" hex_fmt = "0.3" aes-gcm = "0.8" base64 = "0.13" -time = "0.3.21" +time = "0.3.28" subtle = "2.4" thiserror = "1.0.40" diff --git a/crates/lox-wasm/Cargo.toml b/crates/lox-wasm/Cargo.toml index 4b6ea99..01c14c7 100644 --- a/crates/lox-wasm/Cargo.toml +++ b/crates/lox-wasm/Cargo.toml @@ -15,7 +15,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.21" +time = "0.3.28" serde_json = "1.0.105" console_error_panic_hook = "0.1.7"