munkres-rs/Cargo.toml

11 lines
294 B
TOML
Raw Normal View History

2015-10-19 20:27:11 +03:00
[package]
name = "munkres"
version = "0.0.1"
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-10-19 20:27:11 +03:00
[dependencies]
2015-10-20 00:03:22 +03:00
bit-vec = "*"