Skip to content

Commit 7f4dd96

Browse files
chore(deps): Bump serde_yaml from 0.9.22 to 0.9.24 (#18007)
Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.22 to 0.9.24. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's releases</a>.</em></p> <blockquote> <h2>0.9.24</h2> <ul> <li>Implement FromStr for serde_yaml::Number (<a href="https://redirect.github.com/dtolnay/serde-yaml/issues/381">#381</a>)</li> </ul> <h2>0.9.23</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/da99545d4b4502f689dd9d3212aaa8264966dd4c"><code>da99545</code></a> Release 0.9.24</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/053af6fefc02baa769b0319022ff04250886fae4"><code>053af6f</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/382">#382</a> from dtolnay/parsenumber</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/3c681651e10c33f3a8065b4e3b64c903c73f5252"><code>3c68165</code></a> Add test of Number parsing</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/610d7b290d90bfadbc3e7c32df94cc238574afd7"><code>610d7b2</code></a> Implement FromStr for serde_yaml::Number</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/6b212e08b363a1b14e7e800ee485fd34f4300943"><code>6b212e0</code></a> Release 0.9.23</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/cc83b0a220f7eebf2ca13b3a0d81e2c5f3561112"><code>cc83b0a</code></a> Opt in to generate-link-to-definition when building on docs.rs</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/954e38428cd447e5223522c70ecc249211305eb5"><code>954e384</code></a> Make minimal-versions job consistent with other repos</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.22...0.9.24">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.22&new-version=0.9.24)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent fd10e69 commit 7f4dd96

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ serde-toml-merge = { version = "0.3.0", default-features = false }
199199
serde_bytes = { version = "0.11.12", default-features = false, features = ["std"], optional = true }
200200
serde_json = { version = "1.0.103", default-features = false, features = ["raw_value"] }
201201
serde_with = { version = "3.1.0", default-features = false, features = ["macros", "std"] }
202-
serde_yaml = { version = "0.9.22", default-features = false }
202+
serde_yaml = { version = "0.9.24", default-features = false }
203203

204204
# Messagepack
205205
rmp-serde = { version = "1.1.1", default-features = false, optional = true }

vdev/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ regex = { version = "1.9.1", default-features = false, features = ["std", "perf"
3434
reqwest = { version = "0.11", features = ["json", "blocking"] }
3535
serde = { version = "1.0", features = ["derive"] }
3636
serde_json = "1.0.103"
37-
serde_yaml = "0.9.22"
37+
serde_yaml = "0.9.24"
3838
sha2 = "0.10.7"
3939
tempfile = "3.6.0"
4040
toml = { version = "0.7.6", default-features = false, features = ["parse"] }

0 commit comments

Comments
 (0)