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.69 to 1.0.70 (#1713) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.69 to 1.0.70. <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.70</h2> <ul> <li>Add <code>serde_json::Map::retain</code> method (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/822">#822</a>, thanks <a href="https://github.com/deankarn"><code>@​deankarn</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/a050481b852b643ba4992a60eee8e51dd22314ff"><code>a050481</code></a> Release 1.0.70</li> <li><a href="https://github.com/serde-rs/json/commit/24f85d2ecf3701a9c4aceae0700ef691325fb04a"><code>24f85d2</code></a> Reorder Map::retain to keep keys() and values() adjacent</li> <li><a href="https://github.com/serde-rs/json/commit/37da27fc77e875348d444831aba005cb3dd66fee"><code>37da27f</code></a> Merge pull request 822 from deankarn/master</li> <li><a href="https://github.com/serde-rs/json/commit/2e5b9909959f2e315e00c9bd7a0f83f3d54c119b"><code>2e5b990</code></a> Merge branch 'master' of github.com:deankarn/json</li> <li><a href="https://github.com/serde-rs/json/commit/debd7d07fc7bfb064b8a704cd9ef2f6f207f66db"><code>debd7d0</code></a> remove duplicate function</li> <li><a href="https://github.com/serde-rs/json/commit/9e36f611dbc37498a89fcbf43e01b2a9a2312c18"><code>9e36f61</code></a> Update build.rs</li> <li><a href="https://github.com/serde-rs/json/commit/68d3b45c9766f8a36b278eabc870e8232128f83d"><code>68d3b45</code></a> fix function signature</li> <li><a href="https://github.com/serde-rs/json/commit/29a58a3077456600da25ab079476f1248ed9d6d3"><code>29a58a3</code></a> don't include indexmap retain without BTreeMap retain</li> <li><a href="https://github.com/serde-rs/json/commit/eaa1a319c0a4712d3e8669775dd4880efbcfbcdf"><code>eaa1a31</code></a> fix no_btreemap_retain name</li> <li><a href="https://github.com/serde-rs/json/commit/09c589243374d8eb10c885031c0f6ff29ac377e0"><code>09c5892</code></a> test order</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.69...v1.0.70">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.69&new-version=1.0.70)](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.70"
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"
5 years ago
doc = false
path = "src/main.rs"