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"
bitflags = "2.0.0"
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"