[package]
edition = "2021"
name = "sdivi-graph"
version = "0.2.23"
authors = ["Geoff Godwin <geoff.godwin@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dependency graph construction for sdivi-rust"
readme = "README.md"
keywords = [
"sdivi",
"code-divergence",
"graph",
"dependency",
"coupling",
]
categories = [
"development-tools",
"algorithms",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/GeoffGodwin/sdivi-rust"
[features]
default = ["pipeline-records"]
pipeline-records = ["dep:sdivi-parsing"]
[lib]
name = "sdivi_graph"
path = "src/lib.rs"
[[test]]
name = "dependency_graph"
path = "tests/dependency_graph.rs"
[[test]]
name = "integration_real_world"
path = "tests/integration_real_world.rs"
[[test]]
name = "metrics"
path = "tests/metrics.rs"
[[test]]
name = "per_language_baselines"
path = "tests/per_language_baselines.rs"
[[test]]
name = "resolver_edge_cases"
path = "tests/resolver_edge_cases.rs"
[[test]]
name = "resolver_no_panic"
path = "tests/resolver_no_panic.rs"
[[test]]
name = "resolver_unit"
path = "tests/resolver_unit.rs"
[[test]]
name = "tsconfig_alias"
path = "tests/tsconfig_alias.rs"
[dependencies.petgraph]
version = "0.6"
[dependencies.sdivi-config]
version = "0.2.13"
default-features = false
[dependencies.sdivi-parsing]
version = "0.2.13"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.sdivi-config]
version = "0.2.13"
default-features = false
[dev-dependencies.tempfile]
version = ">=3.0, <3.20"