Browse Source

Bump serde_json from 1.0.79 to 1.0.80 (#2051)

Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.79 to 1.0.80.
<details>
<summary>Commits</summary>
<ul>
<li><a href="585e4c5dc7"><code>585e4c5</code></a> Release 1.0.80</li>
<li><a href="52a9c050f5"><code>52a9c05</code></a> Pull miri from miri branch of dtolnay/rust-toolchain</li>
<li><a href="aff685b8c9"><code>aff685b</code></a> Drop unneeded quoting from env variable in workflows yaml</li>
<li><a href="6995bbf784"><code>6995bbf</code></a> Update workflows to actions/checkout@v3</li>
<li><a href="829175e606"><code>829175e</code></a> Fix dev dependencies on serde's derive feature</li>
<li><a href="2733e635b3"><code>2733e63</code></a> Rewrap readme to 80 columns</li>
<li><a href="c5475a32db"><code>c5475a3</code></a> Apply readme changes from PR 864 to crate-level rustdoc</li>
<li><a href="56cf16f900"><code>56cf16f</code></a> Merge pull request 864 from novedevo/patch-1</li>
<li><a href="16b68b06d6"><code>16b68b0</code></a> Tweak grammar to improve readability</li>
<li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.79...v1.0.80">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.79&new-version=1.0.80)](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/2052/head
dependabot[bot] 2 years ago
parent
commit
8b6f3561e4
  1. 4
      Cargo.lock
  2. 2
      boa_cli/Cargo.toml
  3. 2
      boa_engine/Cargo.toml
  4. 2
      boa_tester/Cargo.toml

4
Cargo.lock generated

@ -1266,9 +1266,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.79" version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" checksum = "f972498cf015f7c0746cac89ebe1d6ef10c293b94175a243a2d9442c163d9944"
dependencies = [ dependencies = [
"itoa 1.0.1", "itoa 1.0.1",
"ryu", "ryu",

2
boa_cli/Cargo.toml

@ -17,7 +17,7 @@ boa_interner = { path = "../boa_interner", version = "0.14.0" }
rustyline = "9.1.2" rustyline = "9.1.2"
rustyline-derive = "0.6.0" rustyline-derive = "0.6.0"
clap = { version = "3.1.14", features = ["derive"] } clap = { version = "3.1.14", features = ["derive"] }
serde_json = "1.0.79" serde_json = "1.0.80"
colored = "2.0.0" colored = "2.0.0"
regex = "1.5.5" regex = "1.5.5"
phf = { version = "0.10.1", features = ["macros"] } phf = { version = "0.10.1", features = ["macros"] }

2
boa_engine/Cargo.toml

@ -25,7 +25,7 @@ boa_gc = { path = "../boa_gc", version = "0.14.0" }
gc = "0.4.1" gc = "0.4.1"
boa_profiler = { path = "../boa_profiler", version = "0.14.0" } boa_profiler = { path = "../boa_profiler", version = "0.14.0" }
serde = { version = "1.0.136", features = ["derive", "rc"] } serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = "1.0.79" serde_json = "1.0.80"
rand = "0.8.5" rand = "0.8.5"
num-traits = "0.2.14" num-traits = "0.2.14"
regress = "0.4.1" regress = "0.4.1"

2
boa_tester/Cargo.toml

@ -17,7 +17,7 @@ boa_interner = { path = "../boa_interner", version = "0.14.0" }
structopt = "0.3.26" structopt = "0.3.26"
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = "0.8.23" serde_yaml = "0.8.23"
serde_json = "1.0.79" serde_json = "1.0.80"
bitflags = "1.3.2" bitflags = "1.3.2"
regex = "1.5.5" regex = "1.5.5"
once_cell = "1.10.0" once_cell = "1.10.0"

Loading…
Cancel
Save