munkres-rs/Cargo.toml
Michael Neumann 9be159c4fd Use criterion for benchmarks
We no longer need nightly rust to run benchmarks (or tests).
2019-04-06 20:36:00 +02:00

22 lines
537 B
TOML

[package]
name = "munkres"
version = "0.4.0"
authors = ["Michael Neumann <mneumann@ntecs.de>"]
license = "BSD-3-Clause"
repository = "https://github.com/mneumann/munkres-rs"
description = "Kuhn-Munkres (aka Hungarian) algorithm for solving the Assignment Problem in O(n^3)"
keywords = ["algorithm", "optimization"]
include = ["src/*.rs", "Cargo.toml", "LICENSE", "README.md"]
edition = "2018"
[dependencies]
fixedbitset = "0.1"
ndarray = "0.11"
[dev-dependencies]
criterion = "0.2"
[[bench]]
name = "solve_assignment"
harness = false