Skip to content

Commit e164b36

Browse files
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#17756)
Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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> Co-authored-by: Doug Smith <[email protected]>
1 parent a53c7a2 commit e164b36

File tree

4 files changed

+46
-29
lines changed

4 files changed

+46
-29
lines changed

Cargo.lock

+43-27
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
@@ -194,7 +194,7 @@ serde-toml-merge = { version = "0.3.0", default-features = false }
194194
serde_bytes = { version = "0.11.9", default-features = false, features = ["std"], optional = true }
195195
serde_json = { version = "1.0.97", default-features = false, features = ["raw_value"] }
196196
serde_with = { version = "2.3.2", default-features = false, features = ["macros", "std"] }
197-
serde_yaml = { version = "0.9.21", default-features = false }
197+
serde_yaml = { version = "0.9.22", default-features = false }
198198

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

LICENSE-3rdparty.csv

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ enum-as-inner,https://github.com/bluejekyll/enum-as-inner,MIT OR Apache-2.0,Benj
174174
enum_dispatch,https://gitlab.com/antonok/enum_dispatch,MIT OR Apache-2.0,Anton Lazarev <https://antonok.com>
175175
enumflags2,https://github.com/meithecatte/enumflags2,MIT OR Apache-2.0,"maik klein <[email protected]>, Maja Kądziołka <[email protected]>"
176176
env_logger,https://github.com/env-logger-rs/env_logger,MIT OR Apache-2.0,The Rust Project Developers
177+
equivalent,https://github.com/cuviper/equivalent,Apache-2.0 OR MIT,The equivalent Authors
177178
erased-serde,https://github.com/dtolnay/erased-serde,MIT OR Apache-2.0,David Tolnay <[email protected]>
178179
errno,https://github.com/lambda-fairy/rust-errno,MIT OR Apache-2.0,Chris Wong <[email protected]>
179180
errno-dragonfly,https://github.com/mneumann/errno-dragonfly-rs,MIT,Michael Neumann <[email protected]>

vdev/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ regex = { version = "1.8.4", 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.97"
37-
serde_yaml = "0.9.21"
37+
serde_yaml = "0.9.22"
3838
sha2 = "0.10.7"
3939
tempfile = "3.6.0"
4040
toml = { version = "0.7.4", default-features = false, features = ["parse"] }

0 commit comments

Comments
 (0)