munkres-rs/Cargo.toml

14 lines
447 B
TOML
Raw Normal View History

2015-10-19 20:27:11 +03:00
[package]
name = "munkres"
version = "0.3.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 with O(n^3) time complexity"
2015-12-21 17:48:24 +03:00
keywords = ["algorithm", "optimization"]
2016-02-28 00:48:09 +03:00
include = ["src/*.rs", "Cargo.toml", "LICENSE", "README.md"]
2015-10-19 20:27:11 +03:00
[dependencies]
fixedbitset = "0.1"
ndarray = "0.11"