archaven 0.2.0

A small Rust dependency rule checker for modular architectures.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.76"
name = "archaven"
version = "0.2.0"
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"