Update Rust crate time to 0.3.28

This commit is contained in:
Renovate Bot 2023-08-30 18:04:11 +00:00
parent 39577b95ca
commit 38b97c769b
4 changed files with 21 additions and 11 deletions

26
Cargo.lock generated
View File

@ -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",
]

View File

@ -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"] }

View File

@ -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"

View File

@ -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"