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

Commit

Permalink
Update Rust crate serde to 1.0.156 (#1812)
Browse files Browse the repository at this point in the history
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 <cabr2.help@gmail.com>
Co-authored-by: crapStone <crapstone01@gmail.com>
Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1812
Reviewed-by: crapStone <crapstone@noreply.codeberg.org>
Co-authored-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
Co-committed-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
  • Loading branch information
3 people authored and crapStone committed Mar 15, 2023
1 parent eb42339 commit a86bab3
Show file tree
Hide file tree
Showing 11 changed files with 199 additions and 217 deletions.
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ base64 = "0.21.0"
directories-next = "2.0.0"
lazy_static = "1.4.0"
log = "0.4.17"
serde = { version = "1.0.152", features = ["derive"] }
serde = { version = "1.0.156", features = ["derive"] }
serde_json = "1.0.94"
thiserror = "1.0.39"
tokio = { version = "1.26.0", features = ["fs", "io-util"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/error-ser/Cargo.toml
Expand Up @@ -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.152", features = ["derive"] }
serde = { version = "1.0.156", features = ["derive"] }
2 changes: 1 addition & 1 deletion crates/load_save/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ log = "0.4.17"
lopdf = { version = "0.29.0", optional = true }
quick-xml = { version = "0.27.1", features = ["serialize"], optional = true }
regex = { version = "1.7.1", optional = true }
serde = { version = "1.0.152", features = ["derive"] }
serde = { version = "1.0.156", features = ["derive"] }
serde_json = { version = "1.0.94", optional = true }
thiserror = "1.0.39"
tokio = { version = "1.26.0", features = ["fs"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/search/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ log = "0.4.17"
quick-xml = { version = "0.27.1", optional = true, features = ["serialize"] }
regex = { version = "1.7.1", optional = true }
reqwest = { version = "0.11.14", features = ["deflate", "gzip", "json", "native-tls"], default-features = false, optional = true }
serde = { version = "1.0.152", features = ["derive"] }
serde = { version = "1.0.156", features = ["derive"] }
serde_json = "1.0.94"
structopt = { version = "0.3.26", optional = true }
thiserror = "1.0.39"
Expand Down
2 changes: 1 addition & 1 deletion crates/search/src/gestis/functions.rs
Expand Up @@ -119,7 +119,7 @@ impl<'a> ReaderExt<'a> for Reader<&'a [u8]> {
match self.read_event()? {
Event::Start(e) => {
if e.name() == QName(b"table")
&& e.attributes().into_iter().any(|a| {
&& e.attributes().any(|a| {
if let Ok(attr) = a {
attr.key == QName(b"class") && attr.value == class
} else {
Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
cfg-if = { version = "1.0.0", optional = true }
chrono = { version = "0.4.23", features = ["serde"] }
log = "0.4.17"
serde = { version = "1.0.152", features = ["derive"] }
serde = { version = "1.0.156", features = ["derive"] }
tokio = { version = "1.26.0", features = ["sync"], default-features = false, optional = true }

[features]
Expand Down

0 comments on commit a86bab3

Please sign in to comment.