[package]
edition = "2024"
name = "ecma-parse-cat"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ECMAScript parser consuming ecma-lex-cat tokens and producing ecma-syntax-cat Program ASTs. Comprehensive ES2024 surface (classes, modules, destructuring, async/await, optional chaining, templates). Recursive-descent with precedence climbing."
readme = "README.md"
keywords = [
"ecmascript",
"javascript",
"parser",
"estree",
"syntax",
]
categories = [
"parser-implementations",
"compilers",
]
license = "MIT OR Apache-2.0"
[lib]
name = "ecma_parse_cat"
path = "src/lib.rs"
[[test]]
name = "expressions"
path = "tests/expressions.rs"
[[test]]
name = "modules"
path = "tests/modules.rs"
[[test]]
name = "statements"
path = "tests/statements.rs"
[dependencies.ecma-lex-cat]
version = "0.1"
[dependencies.ecma-syntax-cat]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
manual_map = "warn"
needless_pass_by_value = "warn"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1