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.
40 lines
1.0 KiB
40 lines
1.0 KiB
4 years ago
|
[package]
|
||
|
name = "boa_tester"
|
||
2 years ago
|
description = "ECMA-262 tests runner for the Boa JavaScript engine."
|
||
3 years ago
|
keywords = ["javascript", "ECMASCript", "compiler", "test262", "tester"]
|
||
|
categories = ["command-line-utilites"]
|
||
3 years ago
|
publish = false
|
||
2 years ago
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
authors.workspace = true
|
||
|
license.workspace = true
|
||
|
repository.workspace = true
|
||
|
rust-version.workspace = true
|
||
4 years ago
|
|
||
|
[dependencies]
|
||
2 years ago
|
boa_engine.workspace = true
|
||
1 year ago
|
boa_runtime.workspace = true
|
||
2 years ago
|
boa_gc.workspace = true
|
||
1 year ago
|
clap = { workspace = true, features = ["derive"] }
|
||
|
serde = { workspace = true, features = ["derive"] }
|
||
1 year ago
|
serde_yaml = "0.9.27"
|
||
1 year ago
|
serde_json.workspace = true
|
||
|
bitflags.workspace = true
|
||
|
regex.workspace = true
|
||
|
once_cell.workspace = true
|
||
|
colored.workspace = true
|
||
|
rustc-hash = { workspace = true, features = ["std"] }
|
||
1 year ago
|
rayon = "1.8.0"
|
||
1 year ago
|
toml = "0.8.8"
|
||
2 years ago
|
color-eyre = "0.6.2"
|
||
1 year ago
|
phf = { workspace = true, features = ["macros"] }
|
||
1 year ago
|
comfy-table = "7.1.0"
|
||
1 year ago
|
serde_repr = "0.1.17"
|
||
1 year ago
|
bus = "2.4.1"
|
||
2 years ago
|
|
||
|
[features]
|
||
1 year ago
|
default = ["boa_engine/intl", "boa_engine/experimental", "boa_engine/annex-b"]
|
||
1 year ago
|
|
||
|
[lints]
|
||
|
workspace = true
|