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.

33 lines
917 B

[package]
name = "boa_tester"
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", "test262", "tester", "js"]
categories = ["parser-implementations", "wasm"]
license = "Unlicense/MIT"
exclude = ["../.vscode/*", "../Dockerfile", "../Makefile", "../.editorConfig"]
edition = "2021"
rust-version = "1.56"
[features]
vm = ["Boa/vm"]
[dependencies]
Boa = { path = "../boa" }
structopt = "0.3.25"
serde = { version = "1.0.130", features = ["derive"] }
serde_yaml = "0.8.21"
Bump serde_json from 1.0.68 to 1.0.69 (#1706) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.68 to 1.0.69. <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.69</h2> <ul> <li>Implement Hash for serde_json::Number (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/814">#814</a>, thanks <a href="https://github.com/timothee-haudebourg"><code>@​timothee-haudebourg</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/5c4f8b225448c3dd3b90003d51a03dcee05da300"><code>5c4f8b2</code></a> Release 1.0.69</li> <li><a href="https://github.com/serde-rs/json/commit/0035947522dbad7a123ffd3e9b1d48a77103ec93"><code>0035947</code></a> Touch up PR 814</li> <li><a href="https://github.com/serde-rs/json/commit/a28b1b193403d7a45a7c94d7cfebbeca84d774d2"><code>a28b1b1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/814">#814</a> from timothee-haudebourg/hash-numbers-only</li> <li><a href="https://github.com/serde-rs/json/commit/f53ae31df61f7e321276bfcfffe3c1562013d338"><code>f53ae31</code></a> Use the same hash for +0 and -0.</li> <li><a href="https://github.com/serde-rs/json/commit/8b355175407f801cb133034dbcee57bce35c3098"><code>8b35517</code></a> Revert &quot;Disable broken fuzz build in CI&quot;</li> <li><a href="https://github.com/serde-rs/json/commit/d12fbb9520bc6d3a5aac6d233bb0ffaae831f956"><code>d12fbb9</code></a> Fix <code>NaN</code> typo.</li> <li><a href="https://github.com/serde-rs/json/commit/48393aba4075ea1cb7e08e1a7b0bd03a78bd47e5"><code>48393ab</code></a> Better justification for the use of <code>f64::to_bits</code></li> <li><a href="https://github.com/serde-rs/json/commit/9046e3fa869c04554c39f46a5ed571420d86cf10"><code>9046e3f</code></a> Avoid <code>Self::</code> for older Rust versions.</li> <li><a href="https://github.com/serde-rs/json/commit/c3ac6c00770934a0f0d655f941e97caedfeed504"><code>c3ac6c0</code></a> Manual implementation of <code>Number</code>'s <code>PartialEq</code>.</li> <li><a href="https://github.com/serde-rs/json/commit/10655c76395e24297754bac8fd63839a5ebc8efe"><code>10655c7</code></a> Use <code>core::hash</code> instead of <code>std::hash</code>.</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.68...v1.0.69">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.68&new-version=1.0.69)](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.69"
bitflags = "1.3.2"
regex = "1.5.4"
once_cell = "1.8.0"
colored = "2.0.0"
fxhash = "0.2.1"
git2 = "0.13.23"
hex = "0.4.3"
num-format = "0.4.0"
gc = { version = "0.4.1", features = ["derive"] }
rayon = "1.5.1"