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.
25 lines
766 B
25 lines
766 B
[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"] }
|
|
|