feat: add dependency
This commit is contained in:
95
javascript-engine/external/boa/boa_engine/Cargo.toml
vendored
Normal file
95
javascript-engine/external/boa/boa_engine/Cargo.toml
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
[package]
|
||||
name = "boa_engine"
|
||||
keywords = ["javascript", "js", "compiler", "lexer", "parser"]
|
||||
categories = ["parser-implementations", "compilers"]
|
||||
readme = "../README.md"
|
||||
description.workspace = true
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[features]
|
||||
profiler = ["boa_profiler/profiler"]
|
||||
deser = ["boa_interner/serde", "boa_ast/serde"]
|
||||
intl = [
|
||||
"dep:boa_icu_provider",
|
||||
"dep:icu_locid_transform",
|
||||
"dep:icu_locid",
|
||||
"dep:icu_datetime",
|
||||
"dep:icu_plurals",
|
||||
"dep:icu_provider",
|
||||
"dep:icu_calendar",
|
||||
"dep:icu_collator",
|
||||
"dep:icu_list",
|
||||
"dep:writeable",
|
||||
"dep:sys-locale",
|
||||
]
|
||||
|
||||
fuzz = ["boa_ast/fuzz", "boa_interner/fuzz"]
|
||||
|
||||
# Enable Boa's VM instruction flowgraph generator.
|
||||
flowgraph = []
|
||||
|
||||
# Enable Boa's WHATWG console object implementation.
|
||||
console = []
|
||||
|
||||
[dependencies]
|
||||
boa_interner.workspace = true
|
||||
boa_gc.workspace = true
|
||||
boa_profiler.workspace = true
|
||||
boa_macros.workspace = true
|
||||
boa_ast.workspace = true
|
||||
boa_parser.workspace = true
|
||||
serde = { version = "1.0.152", features = ["derive", "rc"] }
|
||||
serde_json = "1.0.91"
|
||||
rand = "0.8.5"
|
||||
num-traits = "0.2.15"
|
||||
regress = "0.4.1"
|
||||
rustc-hash = "1.1.0"
|
||||
num-bigint = { version = "0.4.3", features = ["serde"] }
|
||||
num-integer = "0.1.45"
|
||||
bitflags = "1.3.2"
|
||||
indexmap = "1.9.2"
|
||||
ryu-js = "0.2.2"
|
||||
chrono = "0.4.23"
|
||||
fast-float = "0.2.0"
|
||||
unicode-normalization = "0.1.22"
|
||||
once_cell = "1.17.0"
|
||||
tap = "1.0.1"
|
||||
sptr = "0.3.2"
|
||||
static_assertions = "1.1.0"
|
||||
thiserror = "1.0.38"
|
||||
dashmap = "5.4.0"
|
||||
num_enum = "0.5.7"
|
||||
|
||||
# intl deps
|
||||
boa_icu_provider = { workspace = true, optional = true }
|
||||
icu_locid_transform = { version = "1.0.0", features = ["serde"], optional = true }
|
||||
icu_locid = { version = "1.0.0", features = ["serde"], optional = true }
|
||||
icu_datetime = { version = "1.0.0", features = ["serde", "experimental"], optional = true }
|
||||
icu_calendar = { version = "1.0.0", optional = true }
|
||||
icu_collator = { version = "1.0.1", features = ["serde"], optional = true }
|
||||
icu_plurals = { version = "1.0.0", features = ["serde"], optional = true }
|
||||
icu_provider = { version = "1.0.1", optional = true }
|
||||
icu_list = { version = "1.0.0", features = ["serde"], optional = true }
|
||||
writeable = { version = "0.5.0", optional = true }
|
||||
sys-locale = { version = "0.2.3", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.4.0"
|
||||
float-cmp = "0.9.0"
|
||||
|
||||
[target.x86_64-unknown-linux-gnu.dev-dependencies]
|
||||
jemallocator = "0.5.0"
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib", "lib"]
|
||||
name = "boa_engine"
|
||||
bench = false
|
||||
|
||||
[[bench]]
|
||||
name = "full"
|
||||
harness = false
|
||||
Reference in New Issue
Block a user