[package]
edition = "2024"
name = "hyperpaths-rs"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spiess-Florian optimal strategies transit assignment"
homepage = "https://github.com/LdDl/hyperpaths-rs"
documentation = "https://docs.rs/hyperpaths-rs"
readme = "README.md"
keywords = [
"transit",
"assignment",
"hyperpaths",
"spiess-florian",
"transportation",
]
categories = [
"algorithms",
"simulation",
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/LdDl/hyperpaths-rs"
[features]
testutil = []
[lib]
name = "hyperpaths_rs"
path = "src/lib.rs"
[[example]]
name = "paper"
path = "examples/paper/main.rs"
[[test]]
name = "no_alloc"
path = "tests/no_alloc.rs"
[[bench]]
name = "hyperpath"
path = "benches/hyperpath.rs"
harness = false
required-features = ["testutil"]
[dependencies]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]