[package]
edition = "2021"
rust-version = "1.88"
name = "rusty-path-match"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal-only syn::Path matching helpers shared by capability-attr and taint-check (trailing-segment / suffix / marker matching). Published only so those crates resolve from crates.io — no public-API/semver guarantee, extracted purely to de-duplicate private helpers neither crate ever exposed."
readme = false
license = "Apache-2.0"
repository = "https://github.com/2rusty-lang/rusty-lang"
[lib]
name = "path_match"
path = "src/lib.rs"
[dependencies.syn]
version = "2"
features = ["full"]
[lints.clippy]
all = "deny"
cargo = "deny"
nursery = "deny"
pedantic = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin)"]