From 0e467d32522524ed5cb09db5f52ac8a3e21f961b Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Thu, 4 Aug 2022 23:34:31 +0200 Subject: [PATCH] Update Rust crate chrono to 0.4.20 (#1493) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [chrono](https://github.com/chronotope/chrono) | dependencies | patch | `0.4.19` -> `0.4.20` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: cabr2-bot Co-authored-by: crapStone Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1493 Reviewed-by: crapStone Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- crates/load_save/Cargo.toml | 2 +- crates/logger/Cargo.toml | 2 +- crates/search/Cargo.toml | 2 +- crates/types/Cargo.toml | 2 +- frontend/src-tauri/Cargo.lock | 7 ++++--- frontend/src-wasm/Cargo.lock | 5 ++--- frontend/src-wasm/Cargo.toml | 2 +- webserver/Cargo.lock | 7 ++++--- 8 files changed, 15 insertions(+), 14 deletions(-) diff --git a/crates/load_save/Cargo.toml b/crates/load_save/Cargo.toml index da0ed5838..99a892133 100644 --- a/crates/load_save/Cargo.toml +++ b/crates/load_save/Cargo.toml @@ -11,7 +11,7 @@ edition = "2021" [dependencies] async-trait = "0.1.57" -chrono = { version = "0.4.19", optional = true } +chrono = { version = "0.4.20", optional = true } config = { path = "../config/", optional = true } error-ser = { path = "../error-ser" } handlebars = { version = "4.3.3", optional = true } diff --git a/crates/logger/Cargo.toml b/crates/logger/Cargo.toml index 5e79e8ae9..6736d23da 100644 --- a/crates/logger/Cargo.toml +++ b/crates/logger/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -chrono = "0.4.19" +chrono = "0.4.20" config = { path = "../config/" } fern = "0.6.1" log = "0.4.17" diff --git a/crates/search/Cargo.toml b/crates/search/Cargo.toml index 7d5c1ba7f..db079b389 100644 --- a/crates/search/Cargo.toml +++ b/crates/search/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] async-trait = "0.1.57" cfg-if = "1.0.0" -chrono = "0.4.19" +chrono = "0.4.20" env_logger = { version = "0.9.0", optional = true } error-ser = { path = "../error-ser" } futures = { version = "0.3.21", optional = true } diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index eb8004c71..31fce4406 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] cfg-if = { version = "1.0.0", optional = true } -chrono = { version = "0.4.19", features = ["serde"] } +chrono = { version = "0.4.20", features = ["serde"] } log = "0.4.17" serde = { version = "1.0.142", features = ["derive"] } tokio = { version = "1.20.1", features = ["sync"], default-features = false, optional = true } diff --git a/frontend/src-tauri/Cargo.lock b/frontend/src-tauri/Cargo.lock index 6b86acc13..9dc5c020b 100644 --- a/frontend/src-tauri/Cargo.lock +++ b/frontend/src-tauri/Cargo.lock @@ -325,15 +325,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.19" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" dependencies = [ - "libc", + "js-sys", "num-integer", "num-traits", "serde", "time 0.1.44", + "wasm-bindgen", "winapi", ] diff --git a/frontend/src-wasm/Cargo.lock b/frontend/src-wasm/Cargo.lock index 2d7c2c394..05df963df 100644 --- a/frontend/src-wasm/Cargo.lock +++ b/frontend/src-wasm/Cargo.lock @@ -85,12 +85,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.19" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" dependencies = [ "js-sys", - "libc", "num-integer", "num-traits", "serde", diff --git a/frontend/src-wasm/Cargo.toml b/frontend/src-wasm/Cargo.toml index 9eb1e63df..51124af72 100644 --- a/frontend/src-wasm/Cargo.toml +++ b/frontend/src-wasm/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] cfg-if = "1.0.0" -chrono = { version = "0.4.19", features = ["wasmbind"] } +chrono = { version = "0.4.20", features = ["wasmbind"] } console_error_panic_hook = { version = "0.1.7", optional = true } console_log = { version = "0.2.0", features = ["color"] } js-sys = "0.3.59" diff --git a/webserver/Cargo.lock b/webserver/Cargo.lock index 293fe4e48..810c2406a 100644 --- a/webserver/Cargo.lock +++ b/webserver/Cargo.lock @@ -159,15 +159,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.19" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +checksum = "6127248204b9aba09a362f6c930ef6a78f2c1b2215f8a7b398c06e1083f17af0" dependencies = [ - "libc", + "js-sys", "num-integer", "num-traits", "serde", "time 0.1.44", + "wasm-bindgen", "winapi", ]