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.

25 lines
638 B

[package]
name = "boa_parser"
description = "ECMAScript parser for the Boa JavaScript engine."
keywords = ["javascript", "js", "syntax", "parser"]
categories = ["parser-implementations", "compilers"]
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
boa_interner.workspace = true
boa_macros.workspace = true
boa_ast.workspace = true
boa_profiler.workspace = true
boa_unicode.workspace = true
rustc-hash = "1.1.0"
fast-float = "0.2.0"
num-traits = "0.2.15"
Bump bitflags from 2.0.0 to 2.0.1 (#2677) Bumps [bitflags](https://github.com/bitflags/bitflags) from 2.0.0 to 2.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bitflags/bitflags/releases">bitflags's releases</a>.</em></p> <blockquote> <h2>2.0.1</h2> <h2>What's Changed</h2> <ul> <li>Fix up some docs issues by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/309">bitflags/bitflags#309</a></li> <li>Make empty_flag() const. by <a href="https://github.com/tormeh"><code>@​tormeh</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/313">bitflags/bitflags#313</a></li> <li>Fix formatting of multi-bit flags with partial overlap by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/316">bitflags/bitflags#316</a></li> <li>Prepare for 2.0.1 release by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/317">bitflags/bitflags#317</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/tormeh"><code>@​tormeh</code></a> made their first contribution in <a href="https://redirect.github.com/bitflags/bitflags/pull/313">bitflags/bitflags#313</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bitflags/bitflags/compare/2.0.0...2.0.1">https://github.com/bitflags/bitflags/compare/2.0.0...2.0.1</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md">bitflags's changelog</a>.</em></p> <blockquote> <h1>2.0.1</h1> <h2>What's Changed</h2> <ul> <li>Fix up some docs issues by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/309">bitflags/bitflags#309</a></li> <li>Make empty_flag() const. by <a href="https://github.com/tormeh"><code>@​tormeh</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/313">bitflags/bitflags#313</a></li> <li>Fix formatting of multi-bit flags with partial overlap by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/bitflags/bitflags/pull/316">bitflags/bitflags#316</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/tormeh"><code>@​tormeh</code></a> made their first contribution in <a href="https://redirect.github.com/bitflags/bitflags/pull/313">bitflags/bitflags#313</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/bitflags/bitflags/compare/2.0.0...2.0.1">https://github.com/bitflags/bitflags/compare/2.0.0...2.0.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bitflags/bitflags/commit/8b43d2bb7efbd3d4189fdac92e411ad20c5140b5"><code>8b43d2b</code></a> Merge pull request <a href="https://redirect.github.com/bitflags/bitflags/issues/317">#317</a> from KodrAus/cargo/2.0.1</li> <li><a href="https://github.com/bitflags/bitflags/commit/836eabbab2c6a1794a52cf3b7130f104e46b9a2d"><code>836eabb</code></a> update changelog</li> <li><a href="https://github.com/bitflags/bitflags/commit/11de329ef17f18f2c57d1e03daf203dbbe60b211"><code>11de329</code></a> prepare for 2.0.1 release</li> <li><a href="https://github.com/bitflags/bitflags/commit/af44dcc322398e5eaab045668ee69e414b8714c1"><code>af44dcc</code></a> Merge pull request <a href="https://redirect.github.com/bitflags/bitflags/issues/316">#316</a> from KodrAus/fix/multi-bit-flag-fmt</li> <li><a href="https://github.com/bitflags/bitflags/commit/5ba27cfd4be3ae756b6770dab7e75b9d9f43cbc6"><code>5ba27cf</code></a> use the iterator state as the source of extra bits</li> <li><a href="https://github.com/bitflags/bitflags/commit/c4c13dc1771e8645ad948b4b346b22e876c2a7a6"><code>c4c13dc</code></a> add repro for multi-bit flags</li> <li><a href="https://github.com/bitflags/bitflags/commit/ad0271116e28a79ea880334dd3d06212a224ec09"><code>ad02711</code></a> Merge pull request <a href="https://redirect.github.com/bitflags/bitflags/issues/313">#313</a> from tormeh/tormod/const-empty-flag</li> <li><a href="https://github.com/bitflags/bitflags/commit/242f5e77899e708177cd9b6b1065bb7d277e2d68"><code>242f5e7</code></a> Make empty_flag() const.</li> <li><a href="https://github.com/bitflags/bitflags/commit/2c12c2e63521356da9093aee4d7a28c187f653bf"><code>2c12c2e</code></a> Merge pull request <a href="https://redirect.github.com/bitflags/bitflags/issues/309">#309</a> from bitflags/KodrAus-patch-3</li> <li><a href="https://github.com/bitflags/bitflags/commit/d1d153b4cb50b4f9ca01b4af94843f6d39a7c24f"><code>d1d153b</code></a> fix up some docs issues</li> <li>See full diff in <a href="https://github.com/bitflags/bitflags/compare/2.0.0...2.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=bitflags&package-manager=cargo&previous-version=2.0.0&new-version=2.0.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
bitflags = "2.0.1"
num-bigint = "0.4.3"
Bump regress from 0.4.1 to 0.5.0 (#2651) Bumps [regress](https://github.com/ridiculousfish/regress) from 0.4.1 to 0.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ridiculousfish/regress/releases">regress's releases</a>.</em></p> <blockquote> <h2>v0.5.0</h2> <p>Version 0.5.0 of regress, REGex in Rust with EmcaScript Syntax.</p> <ul> <li>Unicode property escape matching like <code>\p{Letter}</code> is implemented</li> <li>Regex parsing may now use any u32 iterator, not simply strings</li> <li>The Unicode flag &quot;u&quot; is now recognized. Unicode is no longer the default; however non-Unicode regular expression support still has some known differences from JavaScript.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ridiculousfish/regress/commit/ee710e577f7dcd3ccfc66ce5c312f9260db2cfff"><code>ee710e5</code></a> Remove language about unicode property escapes being unimplemented</li> <li><a href="https://github.com/ridiculousfish/regress/commit/8349a8569e58ff52f11e2824b9ba0e8d4781342c"><code>8349a85</code></a> Bump version to 0.5 in preparation for release</li> <li><a href="https://github.com/ridiculousfish/regress/commit/60d4f7b595eefff5f626692a6ca5678170b8816c"><code>60d4f7b</code></a> Update the unicode tables for Unicode 15</li> <li><a href="https://github.com/ridiculousfish/regress/commit/603833d4320302f115438e1bf9d37bd30b01fa9b"><code>603833d</code></a> Add test for escaping unrecognised chars</li> <li><a href="https://github.com/ridiculousfish/regress/commit/f06b2b3ce136b2a25d8aeae3693eb9c64f63f1c3"><code>f06b2b3</code></a> Allow all punctuations to be escaped</li> <li><a href="https://github.com/ridiculousfish/regress/commit/7443e66ccc0930c8d0d00c4cce5df5387a3e9bea"><code>7443e66</code></a> Update hashbrown requirement from 0.12.0 to 0.13.2</li> <li><a href="https://github.com/ridiculousfish/regress/commit/ac59d90fd0b0f8f6373457a45b0f3e811a51c9b8"><code>ac59d90</code></a> rustfmt classicalbacktrack.rs</li> <li><a href="https://github.com/ridiculousfish/regress/commit/cceb877af2e700e9aebc9d7ccbb992fe0332af35"><code>cceb877</code></a> [non-unicode] less strict QuantifierPrefix parsing</li> <li><a href="https://github.com/ridiculousfish/regress/commit/0ca4b596ca878e305daa3f7aaaa6eba15283ae4d"><code>0ca4b59</code></a> to2021, simplfy some code.</li> <li><a href="https://github.com/ridiculousfish/regress/commit/d076e063157d9f5c9ee92e23d0262200c6938dbd"><code>d076e06</code></a> parse unbalanced right brackets as a literal bracket, if not using unicode flag</li> <li>Additional commits viewable in <a href="https://github.com/ridiculousfish/regress/compare/v0.4.1...v0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regress&package-manager=cargo&previous-version=0.4.1&new-version=0.5.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> Co-authored-by: raskad <32105367+raskad@users.noreply.github.com>
2 years ago
regress = "0.5.0"