Browse Source

Bump serde from 1.0.134 to 1.0.135 (#1797)

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.134 to 1.0.135.
<details>
<summary>Commits</summary>
<ul>
<li><a href="8932c852a5"><code>8932c85</code></a> Release 1.0.135</li>
<li><a href="9f3dd3c7c4"><code>9f3dd3c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2163">#2163</a> from serde-rs/discord</li>
<li><a href="dd9b415ff9"><code>dd9b415</code></a> Add discord invite links</li>
<li>See full diff in <a href="https://github.com/serde-rs/serde/compare/v1.0.134...v1.0.135">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.134&new-version=1.0.135)](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/1799/head
dependabot[bot] 3 years ago
parent
commit
090d7ace80
  1. 8
      Cargo.lock
  2. 2
      boa/Cargo.toml
  3. 2
      boa_interner/Cargo.toml
  4. 2
      boa_tester/Cargo.toml

8
Cargo.lock generated

@ -1244,9 +1244,9 @@ checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012"
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.134" version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b3c34c1690edf8174f5b289a336ab03f568a4460d8c6df75f2f3a692b3bc6a" checksum = "2cf9235533494ea2ddcdb794665461814781c53f19d87b76e571a1c35acbad2b"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
@ -1263,9 +1263,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.134" version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "784ed1fbfa13fe191077537b0d70ec8ad1e903cfe04831da608aa36457cb653d" checksum = "8dcde03d87d4c973c04be249e7d8f0b35db1c848c487bd43032808e59dd8328d"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

2
boa/Cargo.toml

@ -22,7 +22,7 @@ console = []
boa_unicode = { path = "../boa_unicode", version = "0.13.0" } boa_unicode = { path = "../boa_unicode", version = "0.13.0" }
boa_interner = { path = "../boa_interner", version = "0.13.0" } boa_interner = { path = "../boa_interner", version = "0.13.0" }
gc = { version = "0.4.1", features = ["derive"] } gc = { version = "0.4.1", features = ["derive"] }
serde = { version = "1.0.134", features = ["derive", "rc"] } serde = { version = "1.0.135", features = ["derive", "rc"] }
serde_json = "1.0.78" serde_json = "1.0.78"
rand = "0.8.4" rand = "0.8.4"
num-traits = "0.2.14" num-traits = "0.2.14"

2
boa_interner/Cargo.toml

@ -11,5 +11,5 @@ rust-version = "1.56"
[dependencies] [dependencies]
string-interner = "0.14.0" string-interner = "0.14.0"
serde = { version = "1.0.134", features = ["derive"], optional = true } serde = { version = "1.0.135", features = ["derive"], optional = true }
gc = { version = "0.4.1", features = ["derive"] } gc = { version = "0.4.1", features = ["derive"] }

2
boa_tester/Cargo.toml

@ -14,7 +14,7 @@ rust-version = "1.56"
[dependencies] [dependencies]
Boa = { path = "../boa" } Boa = { path = "../boa" }
structopt = "0.3.26" structopt = "0.3.26"
serde = { version = "1.0.134", features = ["derive"] } serde = { version = "1.0.135", features = ["derive"] }
serde_yaml = "0.8.23" serde_yaml = "0.8.23"
serde_json = "1.0.78" serde_json = "1.0.78"
bitflags = "1.3.2" bitflags = "1.3.2"

Loading…
Cancel
Save