mirror of https://github.com/boa-dev/boa.git
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.
29 lines
837 B
29 lines
837 B
[package] |
|
name = "boa_tester" |
|
description = "ECMA-262 tests runner for the Boa JavaScript engine." |
|
keywords = ["javascript", "ECMASCript", "compiler", "test262", "tester"] |
|
categories = ["command-line-utilites"] |
|
publish = false |
|
version.workspace = true |
|
edition.workspace = true |
|
authors.workspace = true |
|
license.workspace = true |
|
repository.workspace = true |
|
rust-version.workspace = true |
|
|
|
[dependencies] |
|
boa_engine = { workspace = true, features = ["intl"] } |
|
boa_interner.workspace = true |
|
boa_gc.workspace = true |
|
clap = { version = "3.2.22", features = ["derive"] } |
|
serde = { version = "1.0.145", features = ["derive"] } |
|
serde_yaml = "0.9.13" |
|
serde_json = "1.0.85" |
|
bitflags = "1.3.2" |
|
regex = "1.6.0" |
|
once_cell = "1.15.0" |
|
colored = "2.0.0" |
|
fxhash = "0.2.1" |
|
gc = { version = "0.4.1", features = ["derive"] } |
|
rayon = "1.5.3" |
|
anyhow = "1.0.65"
|
|
|