munkres-rs/Cargo.toml
2021-01-07 15:50:40 +01:00

22 lines
553 B
TOML

[package]
name = "munkres"
version = "0.5.2"
authors = ["Michael Neumann <mneumann@ntecs.de>"]
license = "BSD-3-Clause"
repository = "https://github.com/mneumann/munkres-rs"
description = "Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem in O(n^3)"
keywords = ["algorithm", "optimization"]
include = ["src/*.rs", "benches/*.rs", "Cargo.toml", "LICENSE", "README.md"]
edition = "2018"
[dependencies]
fixedbitset = "0.3"
ndarray = "0.14"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "solve_assignment"
harness = false