[package]
name = "cch"
version = "0.3.0"
edition = "2024"
license = "MIT"
description = "Pure-Rust Customizable Contraction Hierarchies (CCH): build, customize in parallel, and serve fast shortest-path distance, many-to-many matrix, and path queries on road networks"
repository = "https://github.com/Rodeapps/cch"
homepage = "https://github.com/Rodeapps/cch"
documentation = "https://docs.rs/cch"
readme = "README.md"
keywords = ["routing", "cch", "contraction", "shortest-path", "graph"]
categories = ["algorithms", "science::geo"]
rust-version = "1.85"
exclude = ["oracle/", ".github/", ".superpowers/", ".plans/", ".claude/"]
[dependencies]
memmap2 = "0.9"
rayon = "1.10"
[dev-dependencies]
routingkit-cch = { path = "oracle/routingkit-cch" }
tempfile = "3"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "cch"
harness = false
[[bench]]
name = "real_corpus"
harness = false
[lints.clippy]
all = "deny"
pedantic = "warn"