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.

35 lines
908 B

[package]
name = "boa_cli"
version = "0.13.0"
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"
exclude = ["../.vscode/*", "../Dockerfile", "../Makefile", "../.editorConfig"]
edition = "2021"
rust-version = "1.56"
default-run = "boa"
[dependencies]
Boa = { path = "../boa", features = ["deser", "console"] }
rustyline = "9.0.0"
rustyline-derive = "0.5.0"
structopt = "0.3.25"
Bump serde_json from 1.0.70 to 1.0.71 (#1717) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.70 to 1.0.71. <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.71</h2> <ul> <li>Add serde_json::Map::get_key_value (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/821">#821</a>, thanks <a href="https://github.com/timothee-haudebourg"><code>@​timothee-haudebourg</code></a>)</li> <li>Add impl From&lt;Box&lt;RawValue&gt;&gt; for Box&lt;str&gt; (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/824">#824</a>, thanks <a href="https://github.com/jplatte"><code>@​jplatte</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/379412b13875cfb2e440937c4508944d48ee6c96"><code>379412b</code></a> Release 1.0.71</li> <li><a href="https://github.com/serde-rs/json/commit/412556071126d4ae6a3f429393abfe3373731ef1"><code>4125560</code></a> Consolidate unsafe RawValue transmutes in one place</li> <li><a href="https://github.com/serde-rs/json/commit/dee8161ce5dcdc2caea442981d24bc5127011d4e"><code>dee8161</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/824">#824</a> from jplatte/box-raw-value-to-underlying</li> <li><a href="https://github.com/serde-rs/json/commit/584f47674af3844f3226328c02117d2d6e6b782f"><code>584f476</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/821">#821</a> from timothee-haudebourg/get_key_value</li> <li><a href="https://github.com/serde-rs/json/commit/1ae5566f01542a315199107e90a695e25adb9a00"><code>1ae5566</code></a> Disable <code>get_key_value</code> with older Rust versions.</li> <li><a href="https://github.com/serde-rs/json/commit/37fe6b5fa85dba6c66782531e18b9c009c58466d"><code>37fe6b5</code></a> Add impl From&lt;Box<!-- raw HTML omitted -->&gt; for Box&lt;str&gt;</li> <li><a href="https://github.com/serde-rs/json/commit/c4b6b97ccb808283cbe8ca98006bfdb98e21e4df"><code>c4b6b97</code></a> Add <code>Map::get_key_value</code> method.</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.70...v1.0.71">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.70&new-version=1.0.71)](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
serde_json = "1.0.71"
colored = "2.0.0"
regex = "1.5.4"
lazy_static = "1.4.0"
[features]
vm = ["Boa/vm"]
[target.x86_64-unknown-linux-gnu.dependencies]
jemallocator = "0.3.2"
[[bin]]
name = "boa"
4 years ago
doc = false
path = "src/main.rs"