[package]
edition = "2021"
rust-version = "1.76"
name = "archaven"
version = "0.2.1"
build = false
exclude = [
"/docs/superpowers/**",
"/AGENTS.md",
"/Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small Rust dependency rule checker for modular architectures."
homepage = "https://github.com/mtanasiewicz/rust-archaven"
documentation = "https://docs.rs/archaven"
readme = "README.md"
keywords = [
"architecture",
"dependencies",
"testing",
"modules",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mtanasiewicz/rust-archaven"
[lib]
name = "archaven"
path = "src/lib.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "patterns"
path = "tests/patterns.rs"
[[test]]
name = "rules"
path = "tests/rules.rs"
[[test]]
name = "violations"
path = "tests/violations.rs"
[dependencies.globset]
version = "0.4"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit",
]
[dependencies.thiserror]
version = "1.0"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.10"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"