# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "ripped" version = "0.1.0" authors = ["Sebastiaan Vermeulen "] description = "A pure-Rust Interior-Point solver for linear programs" readme = "README.md" keywords = [ "linear-programming", "constrained", "optimization", ] categories = [ "algorithms", "mathematics", "science", ] license = "GPL-3.0-or-later" repository = "https://github.com/sebasv/lp" [profile.release] opt-level = 3 [dependencies.linfa-linalg] version = "0.1.0" optional = true [dependencies.ndarray] version = "0.15.6" [dependencies.ndarray-linalg] version = "0.16.0" optional = true [dependencies.num-traits] version = "0.2.16" [dependencies.thiserror] version = "1.0.49" [dev-dependencies.approx] version = "0.5.1" [dev-dependencies.ndarray] version = "0.15.6" features = ["approx-0_5"] [features] blas = [ "ndarray/blas", "ndarray-linalg", ] default = ["linfa-linalg"] intel-mkl-static = [ "blas", "ndarray-linalg/intel-mkl-static", ] intel-mkl-system = [ "blas", "ndarray-linalg/intel-mkl-system", ] netlib-static = [ "blas", "ndarray-linalg/netlib-static", ] netlib-system = [ "blas", "ndarray-linalg/netlib-system", ] openblas-static = [ "blas", "ndarray-linalg/openblas-static", ] openblas-system = [ "blas", "ndarray-linalg/openblas-system", ]