Browse Source

Bump serde_yaml from 0.9.10 to 0.9.11 (#2264)

Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.10 to 0.9.11.
<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.11</h2>
<ul>
<li>Serialize strings on a single line when they do not already contain a newline character, regardless of string length (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/321">#321</a>, <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/322">#322</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="44aba92a43"><code>44aba92</code></a> Release 0.9.11</li>
<li><a href="4253336a0c"><code>4253336</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/322">#322</a> from dtolnay/width</li>
<li><a href="53ccded41a"><code>53ccded</code></a> Set width=-1 on libyaml emitter</li>
<li><a href="4efbe5083d"><code>4efbe50</code></a> Add a test of long string getting wrapped</li>
<li><a href="638b1c005e"><code>638b1c0</code></a> Resolve needless_borrow clippy lint in test</li>
<li><a href="653e0bb9b3"><code>653e0bb</code></a> Ignore using destructuring assignment to wildcard pattern</li>
<li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.10...0.9.11">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.10&new-version=0.9.11)](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>
pull/2266/head
dependabot[bot] 2 years ago
parent
commit
b0025fc3c7
  1. 4
      Cargo.lock
  2. 2
      boa_tester/Cargo.toml

4
Cargo.lock generated

@ -1433,9 +1433,9 @@ dependencies = [
[[package]]
name = "serde_yaml"
version = "0.9.10"
version = "0.9.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a09f551ccc8210268ef848f0bab37b306e87b85b2e017b899e7fb815f5aed62"
checksum = "89f31df3f50926cdf2855da5fd8812295c34752cb20438dae42a67f79e021ac3"
dependencies = [
"indexmap",
"itoa 1.0.2",

2
boa_tester/Cargo.toml

@ -17,7 +17,7 @@ boa_interner = { path = "../boa_interner", version = "0.15.0" }
boa_gc = { path = "../boa_gc", version = "0.15.0" }
clap = { version = "3.2.20", features = ["derive"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_yaml = "0.9.10"
serde_yaml = "0.9.11"
serde_json = "1.0.85"
bitflags = "1.3.2"
regex = "1.6.0"

Loading…
Cancel
Save