[package]
edition = "2024"
rust-version = "1.92.0"
name = "ox_jsdoc"
version = "0.0.13"
authors = ["kazuya kawaguchi <kawakazu80@gmail.com>"]
build = false
exclude = [
"benches/",
"examples/",
"tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance JSDoc parser with Binary AST format and lazy decoder, inspired by oxc"
homepage = "https://github.com/kazupon/ox-jsdoc"
documentation = "https://docs.rs/ox_jsdoc"
readme = "README.md"
keywords = [
"jsdoc",
"parser",
"binary-ast",
"ast",
"rust",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/kazupon/ox-jsdoc"
[lib]
name = "ox_jsdoc"
path = "src/lib.rs"
[dependencies.memchr]
version = "2"
[dependencies.oxc_allocator]
version = "=0.123.0"
[dependencies.oxc_span]
version = "=0.123.0"
[dependencies.rustc-hash]
version = "2"
[dependencies.smallvec]
version = "1.15.1"
features = ["union"]
[dev-dependencies.criterion2]
version = "3.0.2"
default-features = false
[dev-dependencies.oxc_jsdoc]
version = "=0.123.0"
[lints.rust]
missing_docs = "warn"
unused_must_use = "warn"