[package]
edition = "2024"
name = "boa-cat"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tree-walking ECMAScript interpreter built on ecma-syntax-cat. Evaluates Script programs to Values with a persistent heap and lexical environment, plus native (Rust-implemented) callables for embedder-supplied built-ins. No mut, no Rc/Arc, no interior mutability, no panics, exhaustive matches. Comp-cat-rs reformulation of the Boa engine core, targeting Tauri integration."
readme = "README.md"
keywords = [
"ecmascript",
"javascript",
"interpreter",
"boa",
"type-driven",
]
categories = [
"development-tools",
"compilers",
]
license = "MIT OR Apache-2.0"
[lib]
name = "boa_cat"
path = "src/lib.rs"
[[test]]
name = "arithmetic"
path = "tests/arithmetic.rs"
[[test]]
name = "control_flow"
path = "tests/control_flow.rs"
[[test]]
name = "functions"
path = "tests/functions.rs"
[[test]]
name = "natives"
path = "tests/natives.rs"
[[test]]
name = "objects"
path = "tests/objects.rs"
[dependencies.comp-cat-rs]
version = "0.5"
[dependencies.ecma-lex-cat]
version = "0.1"
[dependencies.ecma-parse-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