munkres-rs/Cargo.toml

12 lines
341 B
TOML
Raw Normal View History

2015-10-19 20:27:11 +03:00
[package]
name = "munkres"
2015-12-21 17:48:24 +03:00
version = "0.1.0"
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"
2015-12-21 17:48:24 +03:00
keywords = ["algorithm", "optimization"]
2015-10-19 20:27:11 +03:00
[dependencies]
fixedbitset = "0.1"