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
916 B
29 lines
916 B
2 years ago
|
[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]
|
||
1 year ago
|
serde = ["dep:serde", "boa_interner/serde", "bitflags/serde", "num-bigint/serde"]
|
||
2 years ago
|
arbitrary = ["dep:arbitrary", "boa_interner/arbitrary", "num-bigint/arbitrary"]
|
||
2 years ago
|
|
||
2 years ago
|
[dependencies]
|
||
|
boa_interner.workspace = true
|
||
|
boa_macros.workspace = true
|
||
1 year ago
|
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
|
||
12 months ago
|
|
||
|
[lints]
|
||
|
workspace = true
|