Browse Source

Bump toml from 0.5.11 to 0.6.0 (#2560)

Bumps [toml](https://github.com/toml-rs/toml) from 0.5.11 to 0.6.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="cf5b7d05fd"><code>cf5b7d0</code></a> chore: Release</li>
<li><a href="bd4cd85795"><code>bd4cd85</code></a> chore: Release</li>
<li><a href="607c06ba3a"><code>607c06b</code></a> docs: Update changelog</li>
<li><a href="b3e03896fb"><code>b3e0389</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/toml-rs/toml/issues/487">#487</a> from epage/fix</li>
<li><a href="2069c721a9"><code>2069c72</code></a> docs(toml): Help people serialize/deserialize values</li>
<li><a href="44d2ee8e1a"><code>44d2ee8</code></a> docs(toml): Update stray reference to Value</li>
<li><a href="eb2f20aff3"><code>eb2f20a</code></a> docs(toml): Remove ignore warning icon</li>
<li><a href="a4fd0b1611"><code>a4fd0b1</code></a> docs(toml): Update map documentation</li>
<li><a href="709dd35ca4"><code>709dd35</code></a> docs(toml): Mirror serde_json in inlining in root</li>
<li><a href="226639c4ec"><code>226639c</code></a> fix(toml)!: <code>toml!</code> now generates a <code>Table</code></li>
<li>Additional commits viewable in <a href="https://github.com/toml-rs/toml/compare/toml-v0.5.11...toml-v0.6.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=toml&package-manager=cargo&previous-version=0.5.11&new-version=0.6.0)](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/2564/head
dependabot[bot] 2 years ago
parent
commit
98a4ee7b8b
  1. 60
      Cargo.lock
  2. 2
      boa_tester/Cargo.toml

60
Cargo.lock generated

@ -333,7 +333,7 @@ dependencies = [
"serde",
"serde_json",
"serde_yaml",
"toml",
"toml 0.6.0",
]
[[package]]
@ -1611,7 +1611,7 @@ checksum = "a19787b0c0fda6a323988a5be7e3906252438310605361f61f0aea11cd354236"
dependencies = [
"icu_collections",
"lazy_static",
"toml",
"toml 0.5.11",
"wasmer",
"wasmer-wasi",
]
@ -1691,7 +1691,7 @@ dependencies = [
"serde_json",
"syn",
"tinystr",
"toml",
"toml 0.5.11",
"writeable",
"zerovec",
"zip 0.6.3",
@ -2307,6 +2307,15 @@ dependencies = [
"libc",
]
[[package]]
name = "nom8"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8"
dependencies = [
"memchr",
]
[[package]]
name = "num-bigint"
version = "0.4.3"
@ -2680,7 +2689,7 @@ checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
dependencies = [
"once_cell",
"thiserror",
"toml",
"toml 0.5.11",
]
[[package]]
@ -3199,6 +3208,15 @@ dependencies = [
"serde",
]
[[package]]
name = "serde_spanned"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c68e921cef53841b8925c2abadd27c9b891d9613bdc43d6b823062866df38e8"
dependencies = [
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
@ -3718,6 +3736,40 @@ dependencies = [
"serde",
]
[[package]]
name = "toml"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb9d890e4dc9298b70f740f615f2e05b9db37dce531f6b24fb77ac993f9f217"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "729bfd096e40da9c001f778f5cdecbd2957929a24e10e5883d9392220a751581"
dependencies = [
"indexmap",
"nom8",
"serde",
"serde_spanned",
"toml_datetime",
]
[[package]]
name = "tower-service"
version = "0.3.2"

2
boa_tester/Cargo.toml

@ -25,7 +25,7 @@ once_cell = "1.17.0"
colored = "2.0.0"
fxhash = "0.2.1"
rayon = "1.6.1"
toml = "0.5.11"
toml = "0.6.0"
color-eyre = "0.6.2"
[features]

Loading…
Cancel
Save