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.
 
 

66 lines
1.6 KiB

[package]
name = "Boa"
version = "0.11.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", "lexer", "parser", "js"]
categories = ["parser-implementations", "wasm"]
license = "Unlicense/MIT"
exclude = ["../.vscode/*", "../Dockerfile", "../Makefile", "../.editorConfig"]
edition = "2018"
[features]
profiler = ["measureme", "once_cell"]
deser = []
# Enable Bytecode generation & execution instead of tree walking
vm = []
# Enable Boa's WHATWG console object implementation.
console = []
[dependencies]
boa_unicode = { path = "../boa_unicode", version = "0.11.0" }
gc = { version = "0.3.6", features = ["derive"] }
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.64"
rand = "0.8.3"
num-traits = "0.2.14"
regress = "0.2.0"
rustc-hash = "1.1.0"
num-bigint = { version = "0.3.1", features = ["serde"] }
num-integer = "0.1.44"
bitflags = "1.2.1"
indexmap = "1.6.1"
ryu-js = "0.2.1"
chrono = "0.4.19"
fast-float = "0.2.0"
# Optional Dependencies
measureme = { version = "9.1.0", optional = true }
once_cell = { version = "1.5.2", optional = true }
[dev-dependencies]
criterion = "0.3.3"
float-cmp = "0.8.0"
[target.x86_64-unknown-linux-gnu.dev-dependencies]
jemallocator = "0.3.2"
[lib]
crate-type = ["cdylib", "lib"]
name = "boa"
bench = false
[[bench]]
name = "parser"
harness = false
[[bench]]
name = "exec"
harness = false
[[bench]]
name = "full"
harness = false