[package]
edition = "2024"
rust-version = "1.88"
name = "weavatrix-graph"
version = "0.2.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 = "algorithms"
path = "tests/algorithms.rs"
[[test]]
name = "algorithms_competitor"
path = "tests/algorithms_competitor.rs"
[[test]]
name = "architecture"
path = "tests/architecture.rs"
[[test]]
name = "boundary"
path = "tests/boundary.rs"
[[test]]
name = "coverage_contract"
path = "tests/coverage_contract.rs"
[[test]]
name = "generators"
path = "tests/generators.rs"
[[test]]
name = "graph_builder"
path = "tests/graph_builder.rs"
[[test]]
name = "matrix"
path = "tests/matrix.rs"
[[test]]
name = "serde_contract"
path = "tests/serde_contract.rs"
[[test]]
name = "topology"
path = "tests/topology.rs"
[[test]]
name = "topology_competitor"
path = "tests/topology_competitor.rs"
[[test]]
name = "undirected"
path = "tests/undirected.rs"
[[test]]
name = "working_graph"
path = "tests/working_graph.rs"
[[bench]]
name = "algorithm_competitors"
path = "benches/algorithm_competitors.rs"
harness = false
[[bench]]
name = "compare_competitors"
path = "benches/compare_competitors.rs"
harness = false
[[bench]]
name = "graph_builder"
path = "benches/graph_builder.rs"
harness = false
[[bench]]
name = "graph_serde"
path = "benches/graph_serde.rs"
harness = false
[[bench]]
name = "topology_competitors"
path = "benches/topology_competitors.rs"
harness = false
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dev-dependencies.graaf]
version = "0.112.0"
[dev-dependencies.petgraph]
version = "0.8.3"
features = ["std"]
default-features = false
[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"