[package]
edition = "2024"
name = "java-lang"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Java AST parser in Rust, syn-style API for Java 25 (JLS SE 25)"
readme = "README.md"
keywords = [
"java",
"parser",
"ast",
"jls",
"java25",
]
categories = ["parser-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mzdk100/java-lang"
[features]
default = []
full = []
[lib]
name = "java_lang"
path = "src/lib.rs"
[[example]]
name = "hello"
path = "examples/hello.rs"
[[test]]
name = "android_sdk_tests"
path = "tests/android_sdk_tests.rs"
[[test]]
name = "debug"
path = "tests/debug.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.thiserror]
version = "2"
[dependencies.unicode-xid]
version = "0.2"
[dev-dependencies.prettyplease]
version = "0.2"
[dev-dependencies.walkdir]
version = "2"