Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit a86bab3

Browse files
Calciumdibromid Botcabr2-botcrapStone
authored and
crapStone
committed
Update Rust crate serde to 1.0.156 (#1812)
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.152` -> `1.0.156` | --- ### Release Notes <details> <summary>serde-rs/serde</summary> ### [`v1.0.156`](https://github.com/serde-rs/serde/releases/tag/v1.0.156) [Compare Source](serde-rs/serde@v1.0.155...v1.0.156) - Documentation improvements ### [`v1.0.155`](https://github.com/serde-rs/serde/releases/tag/v1.0.155) [Compare Source](serde-rs/serde@v1.0.154...v1.0.155) - Support `Serialize` and `Deserialize` impls for `core::ffi::CStr` and `alloc::ffi::CString` without "std" feature ([#&#8203;2374](serde-rs/serde#2374), thanks [@&#8203;safarir](https://github.com/safarir)) ### [`v1.0.154`](https://github.com/serde-rs/serde/releases/tag/v1.0.154) [Compare Source](serde-rs/serde@v1.0.153...v1.0.154) - Fix "undeclared lifetime" error in generated code when deriving Deserialize for an enum with both `flatten` and `'static` fields ([#&#8203;2383](serde-rs/serde#2383), thanks [@&#8203;Mingun](https://github.com/Mingun)) ### [`v1.0.153`](https://github.com/serde-rs/serde/releases/tag/v1.0.153) [Compare Source](serde-rs/serde@v1.0.152...v1.0.153) - Support `serde(alias = "…")` attribute used inside of flattened struct ([#&#8203;2387](serde-rs/serde#2387), thanks [@&#8203;bebecue](https://github.com/bebecue)) </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTcuMSIsInVwZGF0ZWRJblZlciI6IjM1LjIuMyJ9--> Co-authored-by: cabr2-bot <[email protected]> Co-authored-by: crapStone <[email protected]> Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1812 Reviewed-by: crapStone <[email protected]> Co-authored-by: Calciumdibromid Bot <[email protected]> Co-committed-by: Calciumdibromid Bot <[email protected]>
1 parent eb42339 commit a86bab3

File tree

11 files changed

+199
-217
lines changed

11 files changed

+199
-217
lines changed

crates/config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ base64 = "0.21.0"
1414
directories-next = "2.0.0"
1515
lazy_static = "1.4.0"
1616
log = "0.4.17"
17-
serde = { version = "1.0.152", features = ["derive"] }
17+
serde = { version = "1.0.156", features = ["derive"] }
1818
serde_json = "1.0.94"
1919
thiserror = "1.0.39"
2020
tokio = { version = "1.26.0", features = ["fs", "io-util"] }

crates/error-ser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ authors = [
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
serde = { version = "1.0.152", features = ["derive"] }
12+
serde = { version = "1.0.156", features = ["derive"] }

crates/load_save/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ log = "0.4.17"
1818
lopdf = { version = "0.29.0", optional = true }
1919
quick-xml = { version = "0.27.1", features = ["serialize"], optional = true }
2020
regex = { version = "1.7.1", optional = true }
21-
serde = { version = "1.0.152", features = ["derive"] }
21+
serde = { version = "1.0.156", features = ["derive"] }
2222
serde_json = { version = "1.0.94", optional = true }
2323
thiserror = "1.0.39"
2424
tokio = { version = "1.26.0", features = ["fs"], optional = true }

crates/search/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ log = "0.4.17"
2020
quick-xml = { version = "0.27.1", optional = true, features = ["serialize"] }
2121
regex = { version = "1.7.1", optional = true }
2222
reqwest = { version = "0.11.14", features = ["deflate", "gzip", "json", "native-tls"], default-features = false, optional = true }
23-
serde = { version = "1.0.152", features = ["derive"] }
23+
serde = { version = "1.0.156", features = ["derive"] }
2424
serde_json = "1.0.94"
2525
structopt = { version = "0.3.26", optional = true }
2626
thiserror = "1.0.39"

crates/search/src/gestis/functions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl<'a> ReaderExt<'a> for Reader<&'a [u8]> {
119119
match self.read_event()? {
120120
Event::Start(e) => {
121121
if e.name() == QName(b"table")
122-
&& e.attributes().into_iter().any(|a| {
122+
&& e.attributes().any(|a| {
123123
if let Ok(attr) = a {
124124
attr.key == QName(b"class") && attr.value == class
125125
} else {

crates/types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2018"
1313
cfg-if = { version = "1.0.0", optional = true }
1414
chrono = { version = "0.4.23", features = ["serde"] }
1515
log = "0.4.17"
16-
serde = { version = "1.0.152", features = ["derive"] }
16+
serde = { version = "1.0.156", features = ["derive"] }
1717
tokio = { version = "1.26.0", features = ["sync"], default-features = false, optional = true }
1818

1919
[features]

0 commit comments

Comments
 (0)