munkres-rs/Cargo.toml

22 lines
553 B
TOML
Raw Permalink Normal View History

2015-10-19 20:27:11 +03:00
[package]
name = "munkres"
2021-01-07 18:50:40 +04:00
version = "0.5.2"
2015-10-19 20:27:11 +03:00
authors = ["Michael Neumann <mneumann@ntecs.de>"]
2015-10-20 02:25:35 +03:00
license = "BSD-3-Clause"
2015-10-20 02:24:13 +03:00
repository = "https://github.com/mneumann/munkres-rs"
description = "Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem in O(n^3)"
2015-12-21 17:48:24 +03:00
keywords = ["algorithm", "optimization"]
2019-04-07 20:09:34 +04:00
include = ["src/*.rs", "benches/*.rs", "Cargo.toml", "LICENSE", "README.md"]
edition = "2018"
2015-10-19 20:27:11 +03:00
[dependencies]
2021-01-07 18:50:40 +04:00
fixedbitset = "0.3"
ndarray = "0.14"
[dev-dependencies]
2021-01-07 18:50:40 +04:00
criterion = "0.3"
[[bench]]
name = "solve_assignment"
harness = false