[package]
edition = "2024"
rust-version = "1.85.0"
name = "helix-graph-algorithms"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Storage-independent native graph representation and algorithms for Helix SDKs"
documentation = "https://docs.rs/helix-graph-algorithms"
readme = false
keywords = [
"helixdb",
"graph",
"algorithms",
]
categories = [
"algorithms",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/helixdb/helix-db/tree/main/crates/graph-algorithms"
[lib]
name = "helix_graph_algorithms"
path = "src/lib.rs"
[[test]]
name = "leiden_golden"
path = "tests/leiden_golden.rs"
[[test]]
name = "networkx_golden"
path = "tests/networkx_golden.rs"
[[bench]]
name = "graph_algorithms"
path = "benches/graph_algorithms.rs"
harness = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
[lints.clippy]
match_wildcard_for_single_variants = "warn"
wildcard_enum_match_arm = "deny"