[package]
name = "resopt"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "Declarative constrained residual optimization in Rust"
repository = "https://github.com/yidh98/resopt"
homepage = "https://github.com/yidh98/resopt"
documentation = "https://docs.rs/resopt"
readme = "README.md"
keywords = ["optimization", "least-squares", "residual", "convex", "solver"]
categories = ["algorithms", "mathematics", "science"]
rust-version = "1.74"
include = ["src/**", "examples/**", "tests/**", "README.md", "LICENSE", "Cargo.toml", "Cargo.lock"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = ["clarabel"]
clarabel = ["dep:clarabel"]
[dependencies]
clarabel = { version = "0.11.1", optional = true }