[package]
edition = "2021"
name = "microlp"
version = "0.5.0"
authors = [
"Alexey Zatelepin <alex.zatelepin@gmail.com>",
"Specy <specy.dev@gmail.com>",
]
build = false
exclude = [
"tests/suite/data",
"benchmark",
"BENCHMARK.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast linear programming solver library."
readme = "README.md"
keywords = [
"linear-programming",
"optimization",
]
categories = [
"mathematics",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/Specy/microlp/"
[features]
highs = ["dep:highs"]
[lib]
name = "microlp"
path = "src/lib.rs"
[[test]]
name = "exhaustive_mip"
path = "tests/exhaustive_mip.rs"
[[test]]
name = "suite"
path = "tests/suite/main.rs"
harness = false
[dependencies.highs]
version = "2.4.0"
optional = true
[dependencies.log]
version = "0.4.33"
[dependencies.sprs]
version = "0.11.4"
default-features = false
[dependencies.web-time]
version = "1.1.0"
[dev-dependencies.bit-set]
version = "0.11.1"
default-features = false
[dev-dependencies.env_logger]
version = "0.11.11"
[dev-dependencies.flate2]
version = "1.1.9"
[dev-dependencies.lp_parser_rs]
version = "4.1.0"
[dev-dependencies.mps]
version = "1.0.1"
default-features = false
[dev-dependencies.rand]
version = "0.10.2"
[dev-dependencies.rand_pcg]
version = "0.10.2"
[profile.test]
opt-level = 3