[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-graph"
version = "0.1.0"
authors = ["Sergii Ziborov <sergii.ziborov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic, evidence-carrying graph primitives for repository intelligence"
homepage = "https://weavatrix.com"
documentation = "https://docs.rs/weavatrix-graph"
readme = "README.md"
keywords = [
"graph",
"code-graph",
"static-analysis",
"provenance",
"architecture",
]
categories = [
"data-structures",
"development-tools",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/weavatrix-graph"
[lib]
name = "weavatrix_graph"
path = "src/lib.rs"
[[example]]
name = "legacy_check"
path = "examples/legacy_check.rs"
[[test]]
name = "architecture"
path = "tests/architecture.rs"
[[test]]
name = "boundary"
path = "tests/boundary.rs"
[[test]]
name = "graph_builder"
path = "tests/graph_builder.rs"
[[test]]
name = "serde_contract"
path = "tests/serde_contract.rs"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.151"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"