Skip to content

Commit

Permalink
chore(deps): Update compatible (dev) (#723)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [libtest-mimic](https://togithub.com/LukasKalbertodt/libtest-mimic) |
dev-dependencies | patch | `0.7.0` -> `0.7.2` |
| [serde](https://serde.rs)
([source](https://togithub.com/serde-rs/serde)) | dev-dependencies |
patch | `1.0.197` -> `1.0.199` |
| [serde_json](https://togithub.com/serde-rs/json) | dev-dependencies |
patch | `1.0.115` -> `1.0.116` |

---

### Release Notes

<details>
<summary>LukasKalbertodt/libtest-mimic (libtest-mimic)</summary>

###
[`v0.7.2`](https://togithub.com/LukasKalbertodt/libtest-mimic/blob/HEAD/CHANGELOG.md#072---2024-04-09)

-   Fix `Conclusion::exit_code` (logic was inverted in 0.7.1)

###
[`v0.7.1`](https://togithub.com/LukasKalbertodt/libtest-mimic/blob/HEAD/CHANGELOG.md#071---2024-04-09)

- Add `Conclusion::exit_code` and note about destructors/cleanup to docs
of `exit` and `exit_if_failed`
[`e938e537e`](https://togithub.com/LukasKalbertodt/libtest-mimic/commit/e938e537e02d8cb9c9791fa63bcb8f4746dc3511)

</details>

<details>
<summary>serde-rs/serde (serde)</summary>

###
[`v1.0.199`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.199)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.198...v1.0.199)

- Fix ambiguous associated item when `forward_to_deserialize_any!` is
used on an enum with `Error` variant
([#&#8203;2732](https://togithub.com/serde-rs/serde/issues/2732), thanks
[@&#8203;aatifsyed](https://togithub.com/aatifsyed))

###
[`v1.0.198`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.198)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.197...v1.0.198)

- Support serializing and deserializing `Saturating<T>`
([#&#8203;2709](https://togithub.com/serde-rs/serde/issues/2709), thanks
[@&#8203;jbethune](https://togithub.com/jbethune))

</details>

<details>
<summary>serde-rs/json (serde_json)</summary>

###
[`v1.0.116`](https://togithub.com/serde-rs/json/releases/tag/v1.0.116)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.115...v1.0.116)

- Make module structure comprehensible to static analysis
([#&#8203;1124](https://togithub.com/serde-rs/json/issues/1124), thanks
[@&#8203;mleonhard](https://togithub.com/mleonhard))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on the first day of the
month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/toml-rs/toml).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMjEuMiIsInVwZGF0ZWRJblZlciI6IjM3LjMyMS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed May 1, 2024
1 parent 66f7f1a commit 813ce3d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde = { version = "1.0.197", features = ["derive"] }
toml = { path = "../toml" }
toml_edit = { path = "../toml_edit" }
toml_old = { version = "0.5.10", package = "toml" }
serde_json = "1.0.115"
serde_json = "1.0.116"
lexopt = "0.3.0"
divan = "0.1.14"

Expand Down
4 changes: 2 additions & 2 deletions crates/toml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["ser
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"] }

[dev-dependencies]
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
toml-test-harness = "0.4.8"
toml-test-data = "1.8.0"
snapbox = "0.4.16"
Expand Down
4 changes: 2 additions & 2 deletions crates/toml_edit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ toml_datetime = { version = "0.6.5", path = "../toml_datetime" }
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"], optional = true }

[dev-dependencies]
serde_json = "1.0.115"
serde_json = "1.0.116"
toml-test-harness = "0.4.8"
toml-test-data = "1.8.0"
libtest-mimic = "0.7.0"
libtest-mimic = "0.7.2"
snapbox = { version = "0.4.16", features = ["harness"] }

[[test]]
Expand Down

0 comments on commit 813ce3d

Please sign in to comment.