[dependencies.thiserror]
version = "2.0.17"
[lib]
name = "rustplex"
path = "src/lib.rs"
[package]
authors = ["Mohsen Pakzad <mohsen.pakzad99@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A linear programming solver based on the Simplex algorithm for Rust"
edition = "2021"
keywords = ["rustplex", "lp-solver", "linear-programming", "simplex"]
license = "MIT OR Apache-2.0"
name = "rustplex"
readme = "README.md"
repository = "https://github.com/mohsenpakzad/rustplex"
version = "0.2.0"
[[test]]
name = "expression_tests"
path = "tests/expression_tests.rs"
[[test]]
name = "model_tests"
path = "tests/model_tests.rs"
[[test]]
name = "standardization_tests"
path = "tests/standardization_tests.rs"
[[test]]
name = "variable_tests"
path = "tests/variable_tests.rs"