Rust编写的JavaScript引擎,该项目是一个试验性质的项目。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
835 B

[package]
name = "boa_tester"
description = "ECMA-262 tests runner for the Boa JavaScript engine."
keywords = ["javascript", "ECMASCript", "compiler", "test262", "tester"]
categories = ["command-line-utilites"]
publish = false
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
boa_engine.workspace = true
boa_gc.workspace = true
boa_parser.workspace = true
Bump clap from 4.0.30 to 4.0.32 (#2505) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.30 to 4.0.32. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.0.32</h2> <h2>[4.0.32] - 2022-12-22</h2> <h3>Fixes</h3> <ul> <li><em>(parser)</em> When overriding <code>required(true)</code>, consider args that conflict with its group</li> </ul> <h2>v4.0.31</h2> <h2>[4.0.31] - 2022-12-22</h2> <h3>Performance</h3> <ul> <li>Speed up parsing when a lot of different flags are present (100 unique flags)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.32] - 2022-12-22</h2> <h3>Fixes</h3> <ul> <li><em>(parser)</em> When overriding <code>required(true)</code>, consider args that conflict with its group</li> </ul> <h2>[4.0.31] - 2022-12-22</h2> <h3>Performance</h3> <ul> <li>Speed up parsing when a lot of different flags are present (100 unique flags)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/ec4ccf005da8dc5acf5c89aac306bf9d6c9f4a91"><code>ec4ccf0</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/13fdb839b7549cb03468d61cb60f3e8e1e0b1b33"><code>13fdb83</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/b877345769b7fda9e2f79ce0fdfddee8d25271e7"><code>b877345</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4573">#4573</a> from epage/conflict</li> <li><a href="https://github.com/clap-rs/clap/commit/85ecb3e895d17ff391be6dc43a8e9944cb318cef"><code>85ecb3e</code></a> fix(parser): Override required when parent group has conflict</li> <li><a href="https://github.com/clap-rs/clap/commit/d145b8b166ce0d7ac1c49cda2138d2b5c862e6ea"><code>d145b8b</code></a> test(parser): Demonstrate required-overload bug</li> <li><a href="https://github.com/clap-rs/clap/commit/0eccd556ac694cdb68251f758e9b80574be349a8"><code>0eccd55</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/1e37c25f5eb5d59c315208f7a6db25aea423aa3b"><code>1e37c25</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/dcd5fecab0f6f4e9617f0b8205ad0c6cb5d283d9"><code>dcd5fec</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4572">#4572</a> from epage/group</li> <li><a href="https://github.com/clap-rs/clap/commit/dde22e74ca5442d904f29fd4833f1cc902d3e7f8"><code>dde22e7</code></a> style: Update for latest clippy</li> <li><a href="https://github.com/clap-rs/clap/commit/dd8435d8f34d8343db2a1bda76f05b699e08fbb3"><code>dd8435d</code></a> perf(parser): Reduce duplicate lookups</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.30...v4.0.32">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.30&new-version=4.0.32)](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>
2 years ago
clap = { version = "4.0.32", features = ["derive"] }
Bump serde from 1.0.151 to 1.0.152 (#2509) Bumps [serde](https://github.com/serde-rs/serde) from 1.0.151 to 1.0.152. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/serde/releases">serde's releases</a>.</em></p> <blockquote> <h2>v1.0.152</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/serde/commit/ccf9c6fc072378ea8c4f15df1024e258d35d6e61"><code>ccf9c6f</code></a> Release 1.0.152</li> <li><a href="https://github.com/serde-rs/serde/commit/b25d0ea7f9c7b58d80283f812239ec8109ddf131"><code>b25d0ea</code></a> Link to Hjson data format</li> <li><a href="https://github.com/serde-rs/serde/commit/4f4557fd0508aa02608fa53bea2b9dcdc811af28"><code>4f4557f</code></a> Link to bencode data format</li> <li><a href="https://github.com/serde-rs/serde/commit/bf400d6799826ac78a5cbdbd0bfc899f2416b15b"><code>bf400d6</code></a> Link to serde_tokenstream data format</li> <li><a href="https://github.com/serde-rs/serde/commit/4d2e36d19b32fe27dd56f2b1509059ca5e506326"><code>4d2e36d</code></a> Wrap flexbuffers bullet point to 80 columns</li> <li><a href="https://github.com/serde-rs/serde/commit/df6310e5f51bb2d2bc8eeac4c314740c5dd3ce18"><code>df6310e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/serde/issues/2347">#2347</a> from dtolnay/docsrs</li> <li><a href="https://github.com/serde-rs/serde/commit/938ab5ddec1bd7822bd0ae595bdd475e03574cdb"><code>938ab5d</code></a> Replace docs.serde.rs links with intra-rustdoc links</li> <li><a href="https://github.com/serde-rs/serde/commit/ef5a0de38430e8cd5aa9871c6bb8ddfabf30f611"><code>ef5a0de</code></a> Point documentation links to docs.rs instead of docs.serde.rs</li> <li><a href="https://github.com/serde-rs/serde/commit/5d186c77a63436f67dcb8a4930aa3618500f4640"><code>5d186c7</code></a> Opt out -Zrustdoc-scrape-examples on docs.rs</li> <li>See full diff in <a href="https://github.com/serde-rs/serde/compare/v1.0.151...v1.0.152">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.151&new-version=1.0.152)](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>
2 years ago
serde = { version = "1.0.152", features = ["derive"] }
Bump serde_yaml from 0.9.14 to 0.9.16 (#2491) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.14 to 0.9.16. <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.15</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/e8fbca66b42b6ffef161c4713555bc8c0aa27774"><code>e8fbca6</code></a> Release 0.9.16</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/80ad63022b9f8d3bac636ac0e81275456e713bab"><code>80ad630</code></a> Opt out -Zrustdoc-scrape-examples on docs.rs</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2d0b7bd7bdf1f5ed4185e04b4aa8b4f7199463d1"><code>2d0b7bd</code></a> Release 0.9.15</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f542f4b5416fae48941b009eba2610f6df69b9bd"><code>f542f4b</code></a> Remove major versions reminder</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f2deee6d3260115a3034b63ede995f41984afd51"><code>f2deee6</code></a> Update build status badge</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/490b0c31341c7057d1b5e9123b4cdccb77129561"><code>490b0c3</code></a> Time out workflows after 45 minutes</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/dd8e5cc33ba4534a85631818b40f8c263c771369"><code>dd8e5cc</code></a> Fix renamed let_underscore_drop lint</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.14...0.9.16">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.14&new-version=0.9.16)](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>
2 years ago
serde_yaml = "0.9.16"
Bump serde_json from 1.0.89 to 1.0.91 (#2496) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.89 to 1.0.91. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.91</h2> <ul> <li>Opt out of <code>-Zrustdoc-scrape-examples</code> on docs.rs for now</li> </ul> <h2>v1.0.90</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/26f147fde7ce6441f7db978131150605c5500c28"><code>26f147f</code></a> Release 1.0.91</li> <li><a href="https://github.com/serde-rs/json/commit/d9cdb98f2e376c89fe1c4c1e290b81e83298df5c"><code>d9cdb98</code></a> Opt out -Zrustdoc-scrape-examples on docs.rs</li> <li><a href="https://github.com/serde-rs/json/commit/331511d73dfe72aa67709d3cf40c4b856832bbaa"><code>331511d</code></a> Release 1.0.90</li> <li><a href="https://github.com/serde-rs/json/commit/87538296f7f2fb9ed8c55e7949508bafffd4583b"><code>8753829</code></a> Replace ancient CI service provider in readme</li> <li><a href="https://github.com/serde-rs/json/commit/0a43394ef69559a961f4cda47f45a3952a4d23f5"><code>0a43394</code></a> Update build status badge</li> <li><a href="https://github.com/serde-rs/json/commit/8794844eee024c816aa803d1c4776d1031247820"><code>8794844</code></a> Prevent build.rs rerunning unnecessarily on all source changes</li> <li><a href="https://github.com/serde-rs/json/commit/0b548714d8760dd9581b9bb87fd89aaa48256d86"><code>0b54871</code></a> Time out workflows after 45 minutes</li> <li><a href="https://github.com/serde-rs/json/commit/ecad462c8e966b7f9c059b8aa3362bcf676b776c"><code>ecad462</code></a> Fix renamed let_underscore_drop lint</li> <li><a href="https://github.com/serde-rs/json/commit/9295c96c8e2f3056beb23ba02a8d47f1704e5b02"><code>9295c96</code></a> Resolve needless_borrowed_reference clippy lints</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.89...v1.0.91">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.89&new-version=1.0.91)](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>
2 years ago
serde_json = "1.0.91"
bitflags = "1.3.2"
Bump regex from 1.6.0 to 1.7.0 (#2418) Bumps [regex](https://github.com/rust-lang/regex) from 1.6.0 to 1.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.7.0 (2022-11-05)</h1> <p>This release principally includes an upgrade to Unicode 15.</p> <p>New features:</p> <ul> <li>[FEATURE <a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/832">#832</a>](<a href="https://github-redirect.dependabot.com/rust-lang/regex/issues/916">rust-lang/regex#916</a>): Upgrade to Unicode 15.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/f871a8eb1d725a8aaa56e2ceea57c24fce74b5fd"><code>f871a8e</code></a> 1.7.0</li> <li><a href="https://github.com/rust-lang/regex/commit/ca7b99c64769fa960e5574dbc06195f36464346c"><code>ca7b99c</code></a> changelog: 1.7.0</li> <li><a href="https://github.com/rust-lang/regex/commit/ea3b1320807741aae8b5db926f6b54b99e65bce6"><code>ea3b132</code></a> regex-syntax-0.6.28</li> <li><a href="https://github.com/rust-lang/regex/commit/9a1892737b2268bdcb805673a3cc7175891c8979"><code>9a18927</code></a> syntax: update to Unicode 15</li> <li><a href="https://github.com/rust-lang/regex/commit/0d0023e412f7ead27b0809f5d2f95690d0f0eaef"><code>0d0023e</code></a> rure-0.2.2</li> <li><a href="https://github.com/rust-lang/regex/commit/3bac5c8075823d58b54a8e0773d4b92b95528ac9"><code>3bac5c8</code></a> capi: add 'rlib' crate type</li> <li><a href="https://github.com/rust-lang/regex/commit/159a63c85eb77ec321301bc4c4ebfb90343edc2b"><code>159a63c</code></a> doc: add a note about the empty regex</li> <li><a href="https://github.com/rust-lang/regex/commit/fc6f5ccc51e6e885c13ee645fada9f712adbfc4c"><code>fc6f5cc</code></a> readme: re-word usage to remove version number</li> <li><a href="https://github.com/rust-lang/regex/commit/67824c7af2feaa4fe0189b32b4ff7f7eb95ff140"><code>67824c7</code></a> ci: switch to dtolnay/rust-toolchain</li> <li><a href="https://github.com/rust-lang/regex/commit/54660765af59765e68e4fea56292139ae14ea1f9"><code>5466076</code></a> capi: fix 'unused return value' warnings</li> <li>See full diff in <a href="https://github.com/rust-lang/regex/compare/1.6.0...1.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.6.0&new-version=1.7.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>
2 years ago
regex = "1.7.0"
Bump once_cell from 1.15.0 to 1.16.0 (#2396) Bumps [once_cell](https://github.com/matklad/once_cell) from 1.15.0 to 1.16.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.16.0</h2> <ul> <li>Add <code>no_std</code> implementation based on <code>critical-section</code>, <a href="https://github-redirect.dependabot.com/matklad/once_cell/pull/195">#195</a>.</li> <li>Deprecate <code>atomic-polyfill</code> feature (use the new <code>critical-section</code> instead)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/matklad/once_cell/commit/18e47d73088c0d60ec4a7da50b4ef50417bbc5df"><code>18e47d7</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/206">#206</a></li> <li><a href="https://github.com/matklad/once_cell/commit/06ff1bd31fe480b27497b89472fd0d4d33f281c4"><code>06ff1bd</code></a> publish 1.16.0</li> <li><a href="https://github.com/matklad/once_cell/commit/04e1d59ce7d0d8f2d73c12e84919b927c37bc9e7"><code>04e1d59</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/204">#204</a></li> <li><a href="https://github.com/matklad/once_cell/commit/32ba3f8aa8b88ea36dff2ae4767cd3b22f2d1634"><code>32ba3f8</code></a> clarify MSRV</li> <li><a href="https://github.com/matklad/once_cell/commit/0ebafa5d2f74e35f56f7b7300037b7c26da24bb8"><code>0ebafa5</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/203">#203</a></li> <li><a href="https://github.com/matklad/once_cell/commit/cb85e6b8b8231e2f7bf21e96825113ddcb7244a8"><code>cb85e6b</code></a> publish 1.16.0-pre.1</li> <li><a href="https://github.com/matklad/once_cell/commit/b56e329d70dcc0f2f223d738fe3520b1f842e435"><code>b56e329</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/195">#195</a></li> <li><a href="https://github.com/matklad/once_cell/commit/7d9afdb9d794b549b87a6d7c6611e3a28ec1588a"><code>7d9afdb</code></a> Add comment explaining <code>Mutex\&lt;unsync::OnceCell&gt;</code>.</li> <li><a href="https://github.com/matklad/once_cell/commit/32dada4dbe48ea45c63749b45a476a1d46af75a2"><code>32dada4</code></a> Fix features.</li> <li><a href="https://github.com/matklad/once_cell/commit/23d129038fddb4ec2336ec5879f6482cafe4bd5c"><code>23d1290</code></a> Decrease <code>critical-section</code> version.</li> <li>Additional commits viewable in <a href="https://github.com/matklad/once_cell/compare/v1.15.0...v1.16.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.15.0&new-version=1.16.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>
2 years ago
once_cell = "1.16.0"
colored = "2.0.0"
fxhash = "0.2.1"
Bump rayon from 1.6.0 to 1.6.1 (#2480) Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.6.0 to 1.6.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rayon-rs/rayon/blob/master/RELEASES.md">rayon's changelog</a>.</em></p> <blockquote> <h1>Release rayon 1.6.1 (2022-12-09)</h1> <ul> <li>Simplified <code>par_bridge</code> to only pull one item at a time from the iterator, without batching. Threads that are waiting for iterator items will now block appropriately rather than spinning CPU. (Thanks <a href="https://github.com/njaard"><code>@​njaard</code></a>!)</li> <li>Added protection against recursion in <code>par_bridge</code>, so iterators that also invoke rayon will not cause mutex recursion deadlocks.</li> </ul> <h1>Release rayon-core 1.10.1 (2022-11-18)</h1> <ul> <li>Fixed a race condition with threads going to sleep while a broadcast starts.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rayon-rs/rayon/commit/401678ee554f90ab11abe70eb23737e26b489ddd"><code>401678e</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/709">#709</a></li> <li><a href="https://github.com/rayon-rs/rayon/commit/33e98434134f53fe18d222ea6824bb614942d290"><code>33e9843</code></a> Release rayon 1.2.1 / rayon-core 1.6.1</li> <li><a href="https://github.com/rayon-rs/rayon/commit/dd874ac5d45bb2b8bbb4e621a904bb40e36e1822"><code>dd874ac</code></a> Bump crate versions and dependencies</li> <li><a href="https://github.com/rayon-rs/rayon/commit/0c6338d2676485803db9406e964053232765a281"><code>0c6338d</code></a> Reduce Option complexity in demo cpu_time</li> <li><a href="https://github.com/rayon-rs/rayon/commit/be99e500bf08d8d83a835e7c755a629d31e97510"><code>be99e50</code></a> cargo fmt</li> <li><a href="https://github.com/rayon-rs/rayon/commit/9b4d9798def1ca954b8958fcd22b6a4088af3180"><code>9b4d979</code></a> Avoid mem::uninitialized in the demo cpu_time</li> <li><a href="https://github.com/rayon-rs/rayon/commit/5a466434abcf19107792937dbcc0b57a0b84c8ad"><code>5a46643</code></a> Avoid mem::uninitialized in par_sort_unstable</li> <li><a href="https://github.com/rayon-rs/rayon/commit/73b1061a2318e9cdb12cccfbbaafa5db3895f366"><code>73b1061</code></a> Merge <a href="https://github-redirect.dependabot.com/rayon-rs/rayon/issues/705">#705</a></li> <li><a href="https://github.com/rayon-rs/rayon/commit/54c0b0dc0c7d847eacf18bc3db8f363dafe688bc"><code>54c0b0d</code></a> Make sure that compat-Cargo.lock is fresh</li> <li><a href="https://github.com/rayon-rs/rayon/commit/4fd13b033424be5eac826571e017b1a008d0bd06"><code>4fd13b0</code></a> Regenerate compat-Cargo.lock</li> <li>Additional commits viewable in <a href="https://github.com/rayon-rs/rayon/compare/rayon-core-v1.6.0...rayon-core-v1.6.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon&package-manager=cargo&previous-version=1.6.0&new-version=1.6.1)](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>
2 years ago
rayon = "1.6.1"
Bump toml from 0.5.9 to 0.5.10 (#2485) Bumps [toml](https://github.com/toml-rs/toml) from 0.5.9 to 0.5.10. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/toml-rs/toml/commits/toml-v0.5.10">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.9&new-version=0.5.10)](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>
2 years ago
toml = "0.5.10"
color-eyre = "0.6.2"
[features]
default = ["intl"]
intl = ["boa_engine/intl"]