[package]
edition = "2021"
name = "oparry-parser"
version = "0.2.3"
authors = ["Yanis <yanis@example.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-language parser for JavaScript, TypeScript, Rust, and more"
homepage = "https://github.com/Pamacea/parry"
documentation = "https://docs.rs/oparry-parser"
readme = false
keywords = [
"parser",
"javascript",
"typescript",
"rust",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Pamacea/parry"
[lib]
name = "oparry_parser"
path = "src/lib.rs"
[[test]]
name = "javascript_complete_test"
path = "tests/javascript_complete_test.rs"
[dependencies.oparry-core]
version = "0.2"
[dependencies.oxc_allocator]
version = "0.30"
[dependencies.oxc_ast]
version = "0.30"
[dependencies.oxc_parser]
version = "0.30"
[dependencies.oxc_semantic]
version = "0.30"
[dependencies.oxc_span]
version = "0.30"
[dependencies.oxc_syntax]
version = "0.30"
[dependencies.oxc_traverse]
version = "0.30"
[dependencies.quote]
version = "1.0"
[dependencies.regex]
version = "1.10"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"visit",
]
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = [
"full",
"sync",
]
[dev-dependencies.pretty_assertions]
version = "1.4"