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.

32 lines
961 B

[package]
name = "boa_cli"
version = "0.14.0"
edition = "2021"
rust-version = "1.58"
authors = ["boa-dev"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
repository = "https://github.com/boa-dev/boa"
keywords = ["javascript", "compiler", "lexer", "parser", "js", "cli"]
categories = ["command-line-utilities"]
license = "Unlicense/MIT"
default-run = "boa"
[dependencies]
boa_engine = { path = "../boa_engine", features = ["deser", "console"], version = "0.14.0" }
boa_interner = { path = "../boa_interner", version = "0.14.0" }
Lexer string interning (#1758) This Pull Request is part of #279. It adds a string interner to Boa, which allows many types to not contain heap-allocated strings, and just contain a `NonZeroUsize` instead. This can move types to the stack (hopefully I'll be able to move `Token`, for example, maybe some `Node` types too. Note that the internet is for now only available in the lexer. Next steps (in this PR or future ones) would include also using interning in the parser, and finally in execution. The idea is that strings should be represented with a `Sym` until they are displayed. Talking about display. I have changed the `ParseError` type in order to not contain anything that could contain a `Sym` (basically tokens), which might be a bit faster, but what is important is that we don't depend on the interner when displaying errors. The issue I have now is in order to display tokens. This requires the interner if we want to know identifiers, for example. The issue here is that Rust doesn't allow using a `fmt::Formatter` (only in nightly), which is making my head hurt. Maybe someone of you can find a better way of doing this. Then, about `cursor.expect()`, this is the only place where we don't have the expected token type as a static string, so it's failing to compile. We have the option of changing the type definition of `ParseError` to contain an owned string, but maybe we can avoid this by having a `&'static str` come from a `TokenKind` with the default values, such as "identifier" for an identifier. I wanted for you to think about it and maybe we can just add that and avoid allocations there. Oh, and this depends on the VM-only branch, so that has to be merged before :) Another thing to check: should the interner be in its own module?
3 years ago
rustyline = "9.1.2"
rustyline-derive = "0.6.0"
Bump clap from 3.1.17 to 3.1.18 (#2071) Bumps [clap](https://github.com/clap-rs/clap) from 3.1.17 to 3.1.18. <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>v3.1.18</h2> <h2>[3.1.18] - 2022-05-10</h2> <h3>Fixes</h3> <ul> <li>Fix deprecated <code>arg_enum!</code> for users migrating to clap3 (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3717">#3717</a>)</li> <li>Verify all <code>required_unless_present_all</code> arguments exist</li> <li>Verify group members exist before processing group members (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3711">#3711</a>)</li> <li><em>(help)</em> Use <code>...</code> when not enough <code>value_names</code> are supplied</li> </ul> <p><strong>gated behind <code>unstable-v4</code></strong></p> <ul> <li>Verify <code>required</code> is not used with conditional required settings (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3660">#3660</a>)</li> <li>Disallow more <code>value_names</code> than <code>number_of_values</code> (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2695">#2695</a>)</li> <li><em>(parser)</em> Assert on unknown args when using external subcommands (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3703">#3703</a>)</li> <li><em>(parser)</em> Always fill in <code>&quot;&quot;</code> argument for external subcommands (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3263">#3263</a>)</li> <li><em>(derive)</em> Detect escaped external subcommands that look like built-in subcommands (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3703">#3703</a>)</li> <li><em>(derive)</em> Leave <code>Arg::id</code> as <code>verbatim</code> casing (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3282">#3282</a>)</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>[3.1.18] - 2022-05-10</h2> <h3>Fixes</h3> <ul> <li>Fix deprecated <code>arg_enum!</code> for users migrating to clap3 (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3717">#3717</a>)</li> <li>Verify all <code>required_unless_present_all</code> arguments exist</li> <li>Verify group members exist before processing group members (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3711">#3711</a>)</li> <li><em>(help)</em> Use <code>...</code> when not enough <code>value_names</code> are supplied</li> </ul> <p><strong>gated behind <code>unstable-v4</code></strong></p> <ul> <li>Verify <code>required</code> is not used with conditional required settings (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3660">#3660</a>)</li> <li>Disallow more <code>value_names</code> than <code>number_of_values</code> (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2695">#2695</a>)</li> <li><em>(parser)</em> Assert on unknown args when using external subcommands (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3703">#3703</a>)</li> <li><em>(parser)</em> Always fill in <code>&quot;&quot;</code> argument for external subcommands (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3263">#3263</a>)</li> <li><em>(derive)</em> Detect escaped external subcommands that look like built-in subcommands (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3703">#3703</a>)</li> <li><em>(derive)</em> Leave <code>Arg::id</code> as <code>verbatim</code> casing (<a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3282">#3282</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/524e36cf1a67ee6a447d3615a70b065d2b4f5e60"><code>524e36c</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6635237037b0a53011d9d9b74d18158386c02922"><code>6635237</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20d95d2b8cd3af53f08da5aa32734f9c109d4c88"><code>20d95d2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3718">#3718</a> from epage/arg_enum</li> <li><a href="https://github.com/clap-rs/clap/commit/52f6939044acf84bc3a2fada1d0b6b6a15f581f4"><code>52f6939</code></a> fix(macros): Add needed call for arg_enum</li> <li><a href="https://github.com/clap-rs/clap/commit/9713cd9ae420c885f793a79d9a4aeb65efbf0e40"><code>9713cd9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3712">#3712</a> from epage/assert</li> <li><a href="https://github.com/clap-rs/clap/commit/7c1f9123a4c48893824fa86eb3b47c98e9b0ca21"><code>7c1f912</code></a> fix(assert): Make sure group members exist before using them</li> <li><a href="https://github.com/clap-rs/clap/commit/a57a4119a11c1825f533ae5fae97d26c0f8c3b16"><code>a57a411</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3708">#3708</a> from epage/rename_sub</li> <li><a href="https://github.com/clap-rs/clap/commit/2e3540355ac3c2d641e76a913c64af5cf78c3f3f"><code>2e35403</code></a> fix(derive): Don't change case of Arg id's (unstable)</li> <li><a href="https://github.com/clap-rs/clap/commit/f7e4dd23d6e11249346f2c6447722251a9e149c6"><code>f7e4dd2</code></a> refactor(derive): Divide rename_all assertions</li> <li><a href="https://github.com/clap-rs/clap/commit/ddc9d54f4191467da869b925c6bc027b3f398b60"><code>ddc9d54</code></a> refactor(derive): Generalize test name</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v3.1.17...v3.1.18">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=3.1.17&new-version=3.1.18)](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 = "3.1.18", features = ["derive"] }
Bump serde_json from 1.0.80 to 1.0.81 (#2059) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.80 to 1.0.81. <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.81</h2> <ul> <li>Work around <code>indexmap</code>/<code>autocfg</code> not always properly detecting whether a <code>std</code> sysroot crate is available (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/885">#885</a>, thanks <a href="https://github.com/cuviper"><code>@​cuviper</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/a0ea9371cd9c163450dbdd978a64d642b0c03873"><code>a0ea937</code></a> Release 1.0.81</li> <li><a href="https://github.com/serde-rs/json/commit/6c3dfe948a1d088198cfa82f777858502bdb39c2"><code>6c3dfe9</code></a> Make it clearer that preserve_order implies a std dependency</li> <li><a href="https://github.com/serde-rs/json/commit/f34ef95fd12278fbeae0868dc99f33a608e6ee45"><code>f34ef95</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/885">#885</a> from cuviper/indexmap-std</li> <li><a href="https://github.com/serde-rs/json/commit/27939bb1f99728c8b878778db8ac51b3d98f9c70"><code>27939bb</code></a> Explicitly enable indexmap/std</li> <li><a href="https://github.com/serde-rs/json/commit/c0f93432cc67d2ac00b081b2f06f4f5e7374955b"><code>c0f9343</code></a> Ignore trait_duplication_in_bounds clippy false positives</li> <li><a href="https://github.com/serde-rs/json/commit/048a64caec40e5a962f6919354fb7b6a8f0d34fd"><code>048a64c</code></a> Resolve type_repetition_in_bounds clippy lint</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.80...v1.0.81">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.80&new-version=1.0.81)](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.81"
colored = "2.0.0"
Bump regex from 1.5.4 to 1.5.5 (#1915) Bumps [regex](https://github.com/rust-lang/regex) from 1.5.4 to 1.5.5. <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.5.5 (2022-03-08)</h1> <p>This releases fixes a security bug in the regex compiler. This bug permits a vector for a denial-of-service attack in cases where the regex being compiled is untrusted. There are no known problems where the regex is itself trusted, including in cases of untrusted haystacks.</p> <ul> <li><a href="https://github.com/rust-lang/regex/security/advisories/GHSA-m5pq-gvj9-9vr8">SECURITY #GHSA-m5pq-gvj9-9vr8</a>: Fixes a bug in the regex compiler where empty sub-expressions subverted the existing mitigations in place to enforce a size limit on compiled regexes. The Rust Security Response WG published an advisory about this: <a href="https://groups.google.com/g/rustlang-security-announcements/c/NcNNL1Jq7Yw">https://groups.google.com/g/rustlang-security-announcements/c/NcNNL1Jq7Yw</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/d130381b150756ba7e5940efdc6ebdf47f4febc0"><code>d130381</code></a> 1.5.5</li> <li><a href="https://github.com/rust-lang/regex/commit/ae70b41d4f46641dbc45c7a4f87954aea356283e"><code>ae70b41</code></a> security: fix denial-of-service bug in compiler</li> <li><a href="https://github.com/rust-lang/regex/commit/b92ffd5471018419ec48dbdef32757424439f065"><code>b92ffd5</code></a> cargo: use SPDX license format</li> <li><a href="https://github.com/rust-lang/regex/commit/f6e52dafdee305d16d6778e7bfe935bd9a6ae38b"><code>f6e52da</code></a> syntax: fix 'unused' warnings</li> <li><a href="https://github.com/rust-lang/regex/commit/5197f21287344d2994f9cf06758a3ea30f5a26c3"><code>5197f21</code></a> fuzz: do not use inherits in Cargo.toml</li> <li><a href="https://github.com/rust-lang/regex/commit/3662851482327e3642940981298150c93718de3c"><code>3662851</code></a> doc: fix typo</li> <li><a href="https://github.com/rust-lang/regex/commit/63ee6699a27b294774af0154862e5cc35b495ee6"><code>63ee669</code></a> syntax/doc: fix 'their' typo</li> <li><a href="https://github.com/rust-lang/regex/commit/d6bc7a4c3b58e1d618024aaededa722df32fa6e8"><code>d6bc7a4</code></a> readme: remove broken badge</li> <li><a href="https://github.com/rust-lang/regex/commit/bd7466034f8cccc3b0918201d1eb099cc8be3c56"><code>bd74660</code></a> fuzz: try to fix build issue</li> <li><a href="https://github.com/rust-lang/regex/commit/bd0a14231b8848669e0d257ba55526f62756c749"><code>bd0a142</code></a> readme: fix badges</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.5.4...1.5.5">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.5.4&new-version=1.5.5)](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>
3 years ago
regex = "1.5.5"
phf = { version = "0.10.1", features = ["macros"] }
[target.x86_64-unknown-linux-gnu.dependencies]
jemallocator = "0.3.2"
[[bin]]
name = "boa"
4 years ago
doc = false
path = "src/main.rs"