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
880 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"] }
Bump rustyline from 9.1.0 to 9.1.1 (#1739) Bumps [rustyline](https://github.com/kkawakam/rustyline) from 9.1.0 to 9.1.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/kkawakam/rustyline/releases">rustyline's releases</a>.</em></p> <blockquote> <h2>9.1.1</h2> <h2>What's Changed</h2> <ul> <li>Revert to edition 2018 <a href="https://github-redirect.dependabot.com/kkawakam/rustyline/issues/582">#582</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/kkawakam/rustyline/compare/v9.1.0...v9.1.1">https://github.com/kkawakam/rustyline/compare/v9.1.0...v9.1.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kkawakam/rustyline/commit/4761f1298fbf01dda2994bab64c2a94b830ff6b1"><code>4761f12</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kkawakam/rustyline/issues/582">#582</a> from gwenn/edition</li> <li><a href="https://github.com/kkawakam/rustyline/commit/2dd95df89a8293aaab0495cad56390beef24e720"><code>2dd95df</code></a> Prepare release of version 9.1.1</li> <li><a href="https://github.com/kkawakam/rustyline/commit/7a13e8c4ba9ff28239814a01a2c9717a3d1e7cd1"><code>7a13e8c</code></a> Revert to edition 2018</li> <li><a href="https://github.com/kkawakam/rustyline/commit/4ff19c042fa964e652ee578ec26cf8fcd1887505"><code>4ff19c0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kkawakam/rustyline/issues/580">#580</a> from gwenn/clippy</li> <li><a href="https://github.com/kkawakam/rustyline/commit/a951dd23bae67a5fd451b24004a0a2d185e8ce33"><code>a951dd2</code></a> Fix clippy warnings</li> <li><a href="https://github.com/kkawakam/rustyline/commit/71cba36fc5220af6403a2e7e53ee03f9b2871b46"><code>71cba36</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/kkawakam/rustyline/issues/579">#579</a> from gwenn/reedline</li> <li><a href="https://github.com/kkawakam/rustyline/commit/698509ec2708ed80200436d650472da45f44f1df"><code>698509e</code></a> Add reedline to similar projects</li> <li>See full diff in <a href="https://github.com/kkawakam/rustyline/compare/v9.1.0...v9.1.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rustyline&package-manager=cargo&previous-version=9.1.0&new-version=9.1.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>
3 years ago
rustyline = "9.1.1"
rustyline-derive = "0.6.0"
structopt = "0.3.25"
Bump serde_json from 1.0.73 to 1.0.75 (#1785) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.73 to 1.0.75. <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.74</h2> <ul> <li>Allow creating RawValues from references to unsized values (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/841">#841</a>, thanks <a href="https://github.com/EFanZh"><code>@​EFanZh</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/a22b686f499e12146cf9a8932d2aebce7c9f2fc3"><code>a22b686</code></a> Release 1.0.75</li> <li><a href="https://github.com/serde-rs/json/commit/36c43bfed5aa695f8d7a8138de585d425b042ed3"><code>36c43bf</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/848">#848</a> from serde-rs/num</li> <li><a href="https://github.com/serde-rs/json/commit/d54138145514758ea9475baf77cd5bf4788e9eaf"><code>d541381</code></a> Deserialize small numbers as integers in arbitrary_precision</li> <li><a href="https://github.com/serde-rs/json/commit/0ca5a69d734c4f5a0185e93de491b45e25ca39b6"><code>0ca5a69</code></a> Add regression test for issue 845</li> <li><a href="https://github.com/serde-rs/json/commit/66919777d0c31addd190c7a48ec78145a270294d"><code>6691977</code></a> Disable buggy iter_not_returning_iterator lint</li> <li><a href="https://github.com/serde-rs/json/commit/aebe84cb09663d0c3371273fb20d838c2e752bcd"><code>aebe84c</code></a> Raise toolchain version for preserve_order to rust 1.46</li> <li><a href="https://github.com/serde-rs/json/commit/3f459308f5055e9a4b1b611a77dad07132011e8d"><code>3f45930</code></a> Set miriflags once for whole miri job</li> <li><a href="https://github.com/serde-rs/json/commit/c79d9ad2e1da0ea3d8e21841404df78ba6f82435"><code>c79d9ad</code></a> Run miri also with some features enabled</li> <li><a href="https://github.com/serde-rs/json/commit/58d40de6ed22bf0c80bbe2443dd00f265281aa2d"><code>58d40de</code></a> Release 1.0.74</li> <li><a href="https://github.com/serde-rs/json/commit/ef7794f87f43d22fc74d1e38aa2cec1d6bcec12e"><code>ef7794f</code></a> Detect warnings in CI</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.73...v1.0.75">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.73&new-version=1.0.75)](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.75"
colored = "2.0.0"
regex = "1.5.4"
lazy_static = "1.4.0"
[target.x86_64-unknown-linux-gnu.dependencies]
jemallocator = "0.3.2"
[[bin]]
name = "boa"
4 years ago
doc = false
path = "src/main.rs"