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.
76 lines
1.8 KiB
76 lines
1.8 KiB
5 years ago
|
[package]
|
||
3 years ago
|
name = "boa_engine"
|
||
3 years ago
|
version = "0.13.0"
|
||
3 years ago
|
edition = "2021"
|
||
|
rust-version = "1.58"
|
||
4 years ago
|
authors = ["boa-dev"]
|
||
5 years ago
|
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
|
||
5 years ago
|
repository = "https://github.com/boa-dev/boa"
|
||
3 years ago
|
keywords = ["javascript", "js", "compiler", "lexer", "parser"]
|
||
|
categories = ["parser-implementations", "compilers"]
|
||
5 years ago
|
license = "Unlicense/MIT"
|
||
3 years ago
|
exclude = [
|
||
|
"../.vscode/*",
|
||
|
"../.editorconfig",
|
||
|
"../test262/*",
|
||
|
"../node_modules/*",
|
||
|
"../target/*",
|
||
|
"../dist/*",
|
||
|
"../.github/*",
|
||
|
"../assets/*",
|
||
|
"../docs/*",
|
||
|
"../*.js",
|
||
|
"../test_ignore.txt",
|
||
|
"../yarn.lock",
|
||
|
"../package.json",
|
||
|
"../index.html",
|
||
|
"../tests/*",
|
||
|
"../.github/*",
|
||
|
]
|
||
5 years ago
|
|
||
4 years ago
|
[features]
|
||
3 years ago
|
profiler = ["boa_profiler/profiler"]
|
||
3 years ago
|
deser = ["boa_interner/serde"]
|
||
4 years ago
|
|
||
4 years ago
|
# Enable Boa's WHATWG console object implementation.
|
||
|
console = []
|
||
|
|
||
5 years ago
|
[dependencies]
|
||
3 years ago
|
boa_unicode = { path = "../boa_unicode", version = "0.13.0" }
|
||
3 years ago
|
boa_interner = { path = "../boa_interner", version = "0.13.0" }
|
||
3 years ago
|
boa_gc = { path = "../boa_gc", version = "0.13.0" }
|
||
|
gc = { version = "0.4.1" }
|
||
|
boa_profiler = { path = "../boa_profiler", version = "0.13.0" }
|
||
3 years ago
|
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
||
3 years ago
|
serde_json = "1.0.79"
|
||
3 years ago
|
rand = "0.8.5"
|
||
4 years ago
|
num-traits = "0.2.14"
|
||
3 years ago
|
regress = "0.4.1"
|
||
5 years ago
|
rustc-hash = "1.1.0"
|
||
3 years ago
|
num-bigint = { version = "0.4.3", features = ["serde"] }
|
||
4 years ago
|
num-integer = "0.1.44"
|
||
3 years ago
|
bitflags = "1.3.2"
|
||
3 years ago
|
indexmap = "1.8.0"
|
||
3 years ago
|
ryu-js = "0.2.2"
|
||
4 years ago
|
chrono = "0.4.19"
|
||
4 years ago
|
fast-float = "0.2.0"
|
||
3 years ago
|
unicode-normalization = "0.1.19"
|
||
3 years ago
|
dyn-clone = "1.0.4"
|
||
3 years ago
|
once_cell = "1.9.0"
|
||
5 years ago
|
|
||
|
[dev-dependencies]
|
||
3 years ago
|
criterion = "0.3.5"
|
||
3 years ago
|
float-cmp = "0.9.0"
|
||
5 years ago
|
|
||
5 years ago
|
[target.x86_64-unknown-linux-gnu.dev-dependencies]
|
||
|
jemallocator = "0.3.2"
|
||
|
|
||
5 years ago
|
[lib]
|
||
|
crate-type = ["cdylib", "lib"]
|
||
3 years ago
|
name = "boa_engine"
|
||
5 years ago
|
bench = false
|
||
|
|
||
4 years ago
|
[[bench]]
|
||
|
name = "full"
|
||
4 years ago
|
harness = false
|