Browse Source

Bump once_cell from 1.16.0 to 1.17.0 (#2510)

Bumps [once_cell](https://github.com/matklad/once_cell) from 1.16.0 to 1.17.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/matklad/once_cell/blob/master/CHANGELOG.md">once_cell's changelog</a>.</em></p>
<blockquote>
<h2>1.17.0</h2>
<ul>
<li>Add <code>race::OnceRef</code> for storing a <code>&amp;'a T</code>.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="85e372f818"><code>85e372f</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/213">#213</a></li>
<li><a href="fae9f73da6"><code>fae9f73</code></a> Add once_cell::race::OnceRef</li>
<li><a href="0d0dae1260"><code>0d0dae1</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/212">#212</a></li>
<li><a href="e94003a299"><code>e94003a</code></a> Removed Debug impls to de-clutter example</li>
<li><a href="3f750e1b6b"><code>3f750e1</code></a> Fixed <code>LateInit</code> example stack overflow</li>
<li><a href="ba8b9fe98b"><code>ba8b9fe</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/209">#209</a></li>
<li><a href="ea438d8e50"><code>ea438d8</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/210">#210</a></li>
<li><a href="f68835a884"><code>f68835a</code></a> fix miri tests</li>
<li><a href="6d46f401f7"><code>6d46f40</code></a> Add references to generic_once_cell</li>
<li><a href="47bf9ae994"><code>47bf9ae</code></a> Readme: Sync related crates to docs</li>
<li>See full diff in <a href="https://github.com/matklad/once_cell/compare/v1.16.0...v1.17.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=once_cell&package-manager=cargo&previous-version=1.16.0&new-version=1.17.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/2511/head
dependabot[bot] 2 years ago
parent
commit
5aac69c27d
  1. 4
      Cargo.lock
  2. 2
      boa_engine/Cargo.toml
  3. 2
      boa_icu_provider/Cargo.toml
  4. 2
      boa_interner/Cargo.toml
  5. 2
      boa_profiler/Cargo.toml
  6. 2
      boa_tester/Cargo.toml

4
Cargo.lock generated

@ -2377,9 +2377,9 @@ dependencies = [
[[package]] [[package]]
name = "once_cell" name = "once_cell"
version = "1.16.0" version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
[[package]] [[package]]
name = "oorandom" name = "oorandom"

2
boa_engine/Cargo.toml

@ -58,7 +58,7 @@ chrono = "0.4.23"
fast-float = "0.2.0" fast-float = "0.2.0"
unicode-normalization = "0.1.22" unicode-normalization = "0.1.22"
dyn-clone = "1.0.10" dyn-clone = "1.0.10"
once_cell = "1.16.0" once_cell = "1.17.0"
tap = "1.0.1" tap = "1.0.1"
sptr = "0.3.2" sptr = "0.3.2"
static_assertions = "1.1.0" static_assertions = "1.1.0"

2
boa_icu_provider/Cargo.toml

@ -19,7 +19,7 @@ icu_provider_adapters = { version = "1.0.0", features = ["serde"]}
icu_datagen = { version = "1.0.2", optional = true } icu_datagen = { version = "1.0.2", optional = true }
log = { version = "0.4.17", optional = true } log = { version = "0.4.17", optional = true }
simple_logger = { version = "4.0.0", optional = true } simple_logger = { version = "4.0.0", optional = true }
once_cell = "1.16.0" once_cell = "1.17.0"
[features] [features]
bin = ["dep:icu_datagen", "dep:simple_logger", "dep:log"] bin = ["dep:icu_datagen", "dep:simple_logger", "dep:log"]

2
boa_interner/Cargo.toml

@ -19,6 +19,6 @@ serde = { version = "1.0.152", features = ["derive"], optional = true }
phf = { version = "0.11.1", features = ["macros"] } phf = { version = "0.11.1", features = ["macros"] }
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
static_assertions = "1.1.0" static_assertions = "1.1.0"
once_cell = "1.16.0" once_cell = "1.17.0"
indexmap = "1.9.2" indexmap = "1.9.2"
arbitrary = { version = "1", optional = true, features = ["derive"] } arbitrary = { version = "1", optional = true, features = ["derive"] }

2
boa_profiler/Cargo.toml

@ -15,5 +15,5 @@ profiler = ["measureme", "once_cell", "rustc-hash"]
[dependencies] [dependencies]
measureme = { version = "10.1.0", optional = true } measureme = { version = "10.1.0", optional = true }
once_cell = { version = "1.16.0", optional = true } once_cell = { version = "1.17.0", optional = true }
rustc-hash = { version = "1.1.0", optional = true } rustc-hash = { version = "1.1.0", optional = true }

2
boa_tester/Cargo.toml

@ -21,7 +21,7 @@ serde_yaml = "0.9.16"
serde_json = "1.0.91" serde_json = "1.0.91"
bitflags = "1.3.2" bitflags = "1.3.2"
regex = "1.7.0" regex = "1.7.0"
once_cell = "1.16.0" once_cell = "1.17.0"
colored = "2.0.0" colored = "2.0.0"
fxhash = "0.2.1" fxhash = "0.2.1"
rayon = "1.6.1" rayon = "1.6.1"

Loading…
Cancel
Save