From 7e124d895d492c82929a7e114cb03ffaa4b8591c Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Mon, 12 Jun 2023 11:42:21 +0000 Subject: [PATCH] Update Rust crate serde to 1.0.164 (#1896) 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 | |---|---|---|---| | [serde](https://serde.rs) ([source](https://github.com/serde-rs/serde)) | dependencies | patch | `1.0.162` -> `1.0.164` | --- ### Release Notes
serde-rs/serde ### [`v1.0.164`](https://github.com/serde-rs/serde/releases/tag/v1.0.164) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.163...v1.0.164) - Allowed enum variants to be individually marked as untagged ([#​2403](https://github.com/serde-rs/serde/issues/2403), thanks [@​dewert99](https://github.com/dewert99)) ### [`v1.0.163`](https://github.com/serde-rs/serde/releases/tag/v1.0.163) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.162...v1.0.163) - Eliminate build script from serde_derive crate to slightly reduce build time ([#​2442](https://github.com/serde-rs/serde/issues/2442), thanks [@​taiki-e](https://github.com/taiki-e))
--- ### 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**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: cabr2-bot Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1896 Reviewed-by: crapStone Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- crates/config/Cargo.toml | 2 +- crates/error-ser/Cargo.toml | 2 +- crates/load_save/Cargo.toml | 2 +- crates/search/Cargo.toml | 2 +- crates/types/Cargo.toml | 2 +- frontend/src-wasm/Cargo.toml | 2 +- webserver/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 9bb29948..8ce35a3d 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -14,7 +14,7 @@ base64 = "0.21.0" directories-next = "2.0.0" lazy_static = "1.4.0" log = "0.4.19" -serde = { version = "1.0.162", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" thiserror = "1.0.40" tokio = { version = "1.28.1", features = ["fs", "io-util"] } diff --git a/crates/error-ser/Cargo.toml b/crates/error-ser/Cargo.toml index 578e4552..925a80f7 100644 --- a/crates/error-ser/Cargo.toml +++ b/crates/error-ser/Cargo.toml @@ -9,4 +9,4 @@ authors = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { version = "1.0.162", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } diff --git a/crates/load_save/Cargo.toml b/crates/load_save/Cargo.toml index 655b0b49..91ab4252 100644 --- a/crates/load_save/Cargo.toml +++ b/crates/load_save/Cargo.toml @@ -18,7 +18,7 @@ log = "0.4.19" lopdf = { version = "0.30.0", optional = true } quick-xml = { version = "0.28.2", features = ["serialize"], optional = true } regex = { version = "1.8.4", optional = true } -serde = { version = "1.0.162", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } serde_json = { version = "1.0.96", optional = true } thiserror = "1.0.40" tokio = { version = "1.28.1", features = ["fs"], optional = true } diff --git a/crates/search/Cargo.toml b/crates/search/Cargo.toml index 80901b40..45b9c3a9 100644 --- a/crates/search/Cargo.toml +++ b/crates/search/Cargo.toml @@ -20,7 +20,7 @@ log = "0.4.19" quick-xml = { version = "0.28.2", optional = true, features = ["serialize"] } regex = { version = "1.8.4", optional = true } reqwest = { version = "0.11.18", features = ["deflate", "gzip", "json", "native-tls"], default-features = false, optional = true } -serde = { version = "1.0.162", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" structopt = { version = "0.3.26", optional = true } thiserror = "1.0.40" diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 316fdd3f..87924836 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" cfg-if = { version = "1.0.0", optional = true } chrono = { version = "0.4.26", features = ["serde"] } log = "0.4.19" -serde = { version = "1.0.162", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } tokio = { version = "1.28.1", features = ["sync"], default-features = false, optional = true } [features] diff --git a/frontend/src-wasm/Cargo.toml b/frontend/src-wasm/Cargo.toml index d007a742..a15fa970 100644 --- a/frontend/src-wasm/Cargo.toml +++ b/frontend/src-wasm/Cargo.toml @@ -19,7 +19,7 @@ console_error_panic_hook = { version = "0.1.7", optional = true } console_log = { version = "1.0.0", features = ["color"] } js-sys = "=0.3.63" log = "0.4.19" -serde = "1.0.162" +serde = "1.0.164" serde-wasm-bindgen = "0.5.0" serde_json = "1.0.96" wasm-bindgen = { version = "=0.2.86", features = ["serde-serialize"] } diff --git a/webserver/Cargo.toml b/webserver/Cargo.toml index 78fc1b36..2a719373 100644 --- a/webserver/Cargo.toml +++ b/webserver/Cargo.toml @@ -14,7 +14,7 @@ repository = "https://codeberg.org/Calciumdibromid/CaBr2" [dependencies] log = "0.4.19" -serde = { version = "1.0.162", features = ["derive"] } +serde = { version = "1.0.164", features = ["derive"] } tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] } uuid = { version = "1.3.3", features = ["v4"] } warp = { version = "0.3.5", default-features = false, features = ["compression"] }