[package]
edition = "2024"
name = "smawk"
version = "0.3.3"
authors = ["Martin Geisler <martin@geisler.net>"]
build = false
exclude = [
".github/",
".gitignore",
"benches/",
"examples/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Functions for finding row-minima in a totally monotone matrix."
readme = "README.md"
keywords = [
"smawk",
"matrix",
"optimization",
"dynamic-programming",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/mgeisler/smawk"
[lib]
name = "smawk"
path = "src/lib.rs"
[[test]]
name = "agreement"
path = "tests/agreement.rs"
[[test]]
name = "complexity"
path = "tests/complexity.rs"
[[test]]
name = "monge"
path = "tests/monge.rs"
[[test]]
name = "version-numbers"
path = "tests/version-numbers.rs"
[dependencies.ndarray]
version = "0.17.1"
optional = true
default-features = false
[dev-dependencies.divan]
version = "0.1.21"
[dev-dependencies.num-traits]
version = "0.2.14"
[dev-dependencies.rand]
version = "0.10.1"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.version-sync]
version = "0.9.4"