[package]
edition = "2024"
name = "cnvx-cli"
version = "0.0.1"
authors = ["chriso345"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cli for cnvx optimization library"
readme = "README.md"
keywords = [
"optimization",
"linear-programming",
"convex",
]
license = "MIT"
repository = "https://github.com/chriso345/cnvx"
resolver = "2"
[[bin]]
name = "cnvx"
path = "src/main.rs"
doc = false
[dependencies.clap]
version = "4.5.57"
features = [
"derive",
"derive",
]
[dependencies.cnvx]
version = "0.0.1"
[dependencies.cnvx-core]
version = "0.0.1"
[dependencies.cnvx-math]
version = "0.0.1"
[dependencies.cnvx-parse]
version = "0.0.1"
[dependencies.sigpipe]
version = "0.1.3"
[lints]