[package]
edition = "2024"
rust-version = "1.85"
name = "codehelion-frontend-rust"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Fast-mode lexer and unit-boundary frontend for the codehelion source-audit tool."
homepage = "https://github.com/libraz/codehelion"
readme = false
license = "Apache-2.0"
repository = "https://github.com/libraz/codehelion"
[lib]
name = "codehelion_frontend_rust"
path = "src/lib.rs"
[[test]]
name = "candidates"
path = "tests/candidates.rs"
[[test]]
name = "detect"
path = "tests/detect.rs"
[[test]]
name = "divergent"
path = "tests/divergent.rs"
[[test]]
name = "failing_mirror"
path = "tests/failing_mirror.rs"
[[test]]
name = "features"
path = "tests/features.rs"
[[test]]
name = "graded"
path = "tests/graded.rs"
[[test]]
name = "negative"
path = "tests/negative.rs"
[[test]]
name = "partial"
path = "tests/partial.rs"
[[test]]
name = "regions"
path = "tests/regions.rs"
[[test]]
name = "stable_id"
path = "tests/stable_id.rs"
[[test]]
name = "structural"
path = "tests/structural.rs"
[[test]]
name = "test_code"
path = "tests/test_code.rs"
[[test]]
name = "verify"
path = "tests/verify.rs"
[dependencies.codehelion-core]
version = "0.1.0"
[dependencies.ra_ap_syntax]
version = "0.0.344"
[dev-dependencies.proptest]
version = "1.6"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1