From 5ac491ab1747464602d2105a1d497f7f1f232fd8 Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Fri, 13 May 2022 13:15:45 +0200 Subject: [PATCH] Update Rust crate serde_json to 1.0.81 (#1334) 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_json](https://github.com/serde-rs/json) | dependencies | patch | `1.0.79` -> `1.0.81` | --- ### Release Notes
serde-rs/json ### [`v1.0.81`](https://github.com/serde-rs/json/releases/v1.0.81) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.80...v1.0.81) - Work around `indexmap`/`autocfg` not always properly detecting whether a `std` sysroot crate is available ([#​885](https://github.com/serde-rs/json/issues/885), thanks [@​cuviper](https://github.com/cuviper)) ### [`v1.0.80`](https://github.com/serde-rs/json/releases/v1.0.80) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.79...v1.0.80) - Documentation improvements
--- ### Configuration 📅 **Schedule**: 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, click this checkbox. --- 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/1334 Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- crates/config/Cargo.toml | 2 +- crates/load_save/Cargo.toml | 2 +- crates/search/Cargo.toml | 2 +- frontend/src-tauri/Cargo.lock | 4 ++-- frontend/src-tauri/Cargo.toml | 2 +- frontend/src-wasm/Cargo.lock | 4 ++-- frontend/src-wasm/Cargo.toml | 2 +- webserver/Cargo.lock | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 0c468c085..da4f4e1ce 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -15,7 +15,7 @@ directories-next = "2.0.0" lazy_static = "1.4.0" log = "0.4.17" serde = { version = "1.0.136", features = ["derive"] } -serde_json = "1.0.79" +serde_json = "1.0.81" thiserror = "1.0.30" tokio = { version = "1.18.2", features = ["fs", "io-util"] } toml = { version = "0.5.9", features = ["preserve_order"] } diff --git a/crates/load_save/Cargo.toml b/crates/load_save/Cargo.toml index 2aafb0d2e..02a45a95e 100644 --- a/crates/load_save/Cargo.toml +++ b/crates/load_save/Cargo.toml @@ -21,7 +21,7 @@ lopdf = { version = "0.27.0", optional = true } quick-xml = { version = "0.22.0", features = ["serialize"], optional = true } regex = { version = "1.5.5", optional = true } serde = { version = "1.0.136", features = ["derive"] } -serde_json = { version = "1.0.79", optional = true } +serde_json = { version = "1.0.81", optional = true } thiserror = "1.0.30" tokio = { version = "1.18.2", features = ["fs"], optional = true } types = { path = "../types/", features = ["lock"] } diff --git a/crates/search/Cargo.toml b/crates/search/Cargo.toml index 4ab40e17e..fda9bceb7 100644 --- a/crates/search/Cargo.toml +++ b/crates/search/Cargo.toml @@ -22,7 +22,7 @@ quick-xml = { version = "0.23.0-alpha3", optional = true } regex = { version = "1.5.5", optional = true } reqwest = { version = "0.11.9", features = ["json", "native-tls"], default-features = false, optional = true } serde = { version = "1.0.136", features = ["derive"] } -serde_json = "1.0.79" +serde_json = "1.0.81" structopt = { version = "0.3.26", optional = true } thiserror = "1.0.30" tokio = { version = "1.18.2", default-features = false, optional = true } diff --git a/frontend/src-tauri/Cargo.lock b/frontend/src-tauri/Cargo.lock index f4f694451..a36bb23ab 100644 --- a/frontend/src-tauri/Cargo.lock +++ b/frontend/src-tauri/Cargo.lock @@ -3026,9 +3026,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.79" +version = "1.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" +checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" dependencies = [ "itoa 1.0.1", "ryu", diff --git a/frontend/src-tauri/Cargo.toml b/frontend/src-tauri/Cargo.toml index 37ee4760f..18fa4b715 100644 --- a/frontend/src-tauri/Cargo.toml +++ b/frontend/src-tauri/Cargo.toml @@ -22,7 +22,7 @@ load_save = { path = "../../crates/load_save/" } log = "0.4.17" logger = { path = "../../crates/logger/" } search = { path = "../../crates/search/" } -serde_json = "1.0.79" +serde_json = "1.0.81" tauri = { version = "1.0.0-rc.10", features = ["api-all"] } tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"] } types = { path = "../../crates/types" } diff --git a/frontend/src-wasm/Cargo.lock b/frontend/src-wasm/Cargo.lock index a7c737ac0..379fd110b 100644 --- a/frontend/src-wasm/Cargo.lock +++ b/frontend/src-wasm/Cargo.lock @@ -758,9 +758,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.79" +version = "1.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" +checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" dependencies = [ "itoa 1.0.1", "ryu", diff --git a/frontend/src-wasm/Cargo.toml b/frontend/src-wasm/Cargo.toml index 3b7f4b910..cbb391e44 100644 --- a/frontend/src-wasm/Cargo.toml +++ b/frontend/src-wasm/Cargo.toml @@ -22,7 +22,7 @@ load_save = { path = "../../crates/load_save/", default-features = false } log = "0.4.17" search = { path = "../../crates/search/", default-features = false } serde = "1.0.136" -serde_json = "1.0.79" +serde_json = "1.0.81" types = { path = "../../crates/types/" } wasm-bindgen = { version = "=0.2.80", features = ["serde-serialize"] } # TODO(#1078) wasm-bindgen-futures = "0.4.30" diff --git a/webserver/Cargo.lock b/webserver/Cargo.lock index 820420d6c..4e4bf2dcf 100644 --- a/webserver/Cargo.lock +++ b/webserver/Cargo.lock @@ -1406,9 +1406,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.79" +version = "1.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" +checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" dependencies = [ "itoa 1.0.1", "ryu",