[package]
edition = "2024"
rust-version = "1.90"
name = "sqry-lang-java"
version = "4.10.0"
authors = ["Verivus Pty Ltd"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Java language plugin for sqry"
readme = false
license = "MIT"
repository = "https://github.com/verivus-oss/sqry"
resolver = "2"
[features]
default = ["has_relations"]
has_relations = []
[lib]
name = "sqry_lang_java"
path = "src/lib.rs"
[[test]]
name = "ast_shape_tests"
path = "tests/ast_shape_tests.rs"
[[test]]
name = "coverage_tests"
path = "tests/coverage_tests.rs"
[[test]]
name = "graph_builder_tests"
path = "tests/graph_builder_tests.rs"
[[test]]
name = "local_variable_reference_tests"
path = "tests/local_variable_reference_tests.rs"
[[test]]
name = "perf_local_scopes"
path = "tests/perf_local_scopes.rs"
[[test]]
name = "typeof_reference_tests"
path = "tests/typeof_reference_tests.rs"
[[test]]
name = "visibility_tests"
path = "tests/visibility_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.log]
version = "0.4"
[dependencies.sqry-core]
version = "4.10.0"
[dependencies.sqry-lang-support]
version = "4.10.0"
[dependencies.streaming-iterator]
version = "0.1"
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-java]
version = "0.23.4"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.log]
version = "0.4"
[dev-dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.walkdir]
version = "2.5"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(disabled)",
"cfg(fuzzing)",
]