feat: add dependency
This commit is contained in:
25
javascript-engine/external/boa/boa_ast/Cargo.toml
vendored
Normal file
25
javascript-engine/external/boa/boa_ast/Cargo.toml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "boa_ast"
|
||||
description = "Abstract Syntax Tree definition for the Boa JavaScript engine."
|
||||
keywords = ["javascript", "js", "syntax", "ast"]
|
||||
categories = ["parser-implementations", "compilers"]
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[features]
|
||||
serde = ["boa_interner/serde", "dep:serde"]
|
||||
|
||||
fuzz = ["arbitrary", "boa_interner/fuzz", "num-bigint/arbitrary"]
|
||||
|
||||
[dependencies]
|
||||
boa_interner.workspace = true
|
||||
boa_macros.workspace = true
|
||||
rustc-hash = "1.1.0"
|
||||
serde = { version = "1.0.152", features = ["derive"], optional = true }
|
||||
bitflags = "1.3.2"
|
||||
num-bigint = "0.4.3"
|
||||
arbitrary = { version = "1", optional = true, features = ["derive"] }
|
||||
Reference in New Issue
Block a user