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.
29 lines
930 B
29 lines
930 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 = ["dep:serde", "boa_interner/serde", "bitflags/serde", "num-bigint/serde"] |
|
arbitrary = ["dep:arbitrary", "boa_interner/arbitrary", "num-bigint/arbitrary"] |
|
temporal = [] |
|
|
|
[dependencies] |
|
boa_interner.workspace = true |
|
boa_macros.workspace = true |
|
rustc-hash = { workspace = true, features = ["std"] } |
|
bitflags.workspace = true |
|
num-bigint.workspace = true |
|
serde = { workspace = true, features = ["derive"], optional = true } |
|
arbitrary = { workspace = true, features = ["derive"], optional = true } |
|
indexmap.workspace = true |
|
|
|
[lints] |
|
workspace = true
|
|
|