[package]
edition = "2021"
name = "sdivi-detection"
version = "0.2.23"
authors = ["Geoff Godwin <geoff.godwin@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Leiden community detection for sdivi-rust"
readme = "README.md"
keywords = [
"sdivi",
"leiden",
"community-detection",
"graph",
"clustering",
]
categories = [
"algorithms",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/GeoffGodwin/sdivi-rust"
[features]
default = ["pipeline-records"]
pipeline-records = []
verify-leiden = []
[lib]
name = "sdivi_detection"
path = "src/lib.rs"
[[test]]
name = "aggregate_invariance"
path = "tests/aggregate_invariance.rs"
[[test]]
name = "induced_subgraph"
path = "tests/induced_subgraph.rs"
[[test]]
name = "leiden_depth_cap"
path = "tests/leiden_depth_cap.rs"
[[test]]
name = "leiden_id_collision"
path = "tests/leiden_id_collision.rs"
[[test]]
name = "leiden_perf"
path = "tests/leiden_perf.rs"
[[test]]
name = "leiden_quality"
path = "tests/leiden_quality.rs"
[[test]]
name = "leiden_regression"
path = "tests/leiden_regression.rs"
[[test]]
name = "leiden_weighted_edges"
path = "tests/leiden_weighted_edges.rs"
[[test]]
name = "partition"
path = "tests/partition.rs"
[[test]]
name = "proptest_seeded"
path = "tests/proptest_seeded.rs"
[[test]]
name = "refinement"
path = "tests/refinement.rs"
[[test]]
name = "warm_start"
path = "tests/warm_start.rs"
[dependencies.rand]
version = "0.8"
[dependencies.sdivi-config]
version = "0.2.13"
default-features = false
[dependencies.sdivi-graph]
version = "0.2.13"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = ">=3.0, <3.20"