Skip to content

Commit 813ce3d

Browse files
chore(deps): Update compatible (dev) (#723)
[![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>
1 parent 66f7f1a commit 813ce3d

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ serde = { version = "1.0.197", features = ["derive"] }
1515
toml = { path = "../toml" }
1616
toml_edit = { path = "../toml_edit" }
1717
toml_old = { version = "0.5.10", package = "toml" }
18-
serde_json = "1.0.115"
18+
serde_json = "1.0.116"
1919
lexopt = "0.3.0"
2020
divan = "0.1.14"
2121

crates/toml/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["ser
4747
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"] }
4848

4949
[dev-dependencies]
50-
serde = { version = "1.0.197", features = ["derive"] }
51-
serde_json = "1.0.115"
50+
serde = { version = "1.0.199", features = ["derive"] }
51+
serde_json = "1.0.116"
5252
toml-test-harness = "0.4.8"
5353
toml-test-data = "1.8.0"
5454
snapbox = "0.4.16"

crates/toml_edit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ toml_datetime = { version = "0.6.5", path = "../toml_datetime" }
4848
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"], optional = true }
4949

5050
[dev-dependencies]
51-
serde_json = "1.0.115"
51+
serde_json = "1.0.116"
5252
toml-test-harness = "0.4.8"
5353
toml-test-data = "1.8.0"
54-
libtest-mimic = "0.7.0"
54+
libtest-mimic = "0.7.2"
5555
snapbox = { version = "0.4.16", features = ["harness"] }
5656

5757
[[test]]

0 commit comments

Comments
 (0)