|
|
|
[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 = ["dep:serde", "boa_interner/serde", "bitflags/serde"]
|
|
|
|
arbitrary = ["dep:arbitrary", "boa_interner/arbitrary", "num-bigint/arbitrary"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
boa_interner.workspace = true
|
|
|
|
boa_macros.workspace = true
|
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
bitflags = "2.3.1"
|
|
|
|
num-bigint = "0.4.3"
|
|
|
|
serde = { version = "1.0.163", features = ["derive"], optional = true }
|
|
|
|
arbitrary = { version = "1", features = ["derive"], optional = true }
|
|
|
|
indexmap = "1.9.3"
|