|
|
|
[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
|
|
|
|
boa_gc.workspace = true
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_yaml = "0.9.25"
|
|
|
|
serde_json.workspace = true
|
|
|
|
bitflags.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
once_cell.workspace = true
|
|
|
|
colored.workspace = true
|
|
|
|
rustc-hash = { workspace = true, features = ["std"] }
|
|
|
|
rayon = "1.8.0"
|
|
|
|
toml = "0.8.0"
|
|
|
|
color-eyre = "0.6.2"
|
|
|
|
phf = { workspace = true, features = ["macros"] }
|
|
|
|
comfy-table = "7.0.1"
|
|
|
|
serde_repr = "0.1.16"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["boa_engine/intl", "boa_engine/experimental", "boa_engine/annex-b"]
|