munkres-rs/Cargo.toml

22 lines
537 B
TOML
Raw Normal View History

2015-10-19 20:27:11 +03:00
[package]
name = "munkres"
2019-04-07 19:34:13 +04:00
version = "0.5.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 in O(n^3)"
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"]
edition = "2018"
2015-10-19 20:27:11 +03:00
[dependencies]
fixedbitset = "0.1"
2019-04-07 00:53:44 +04:00
ndarray = "0.12"
[dev-dependencies]
criterion = "0.2"
[[bench]]
name = "solve_assignment"
harness = false