[package]
name = "bobyqa"
version = "0.1.1"
edition = "2024"
rust-version = "1.85"
authors = ["Paweł Lenartowicz <pawellenartowicz@europe.com>"]
description = "Dependency-free BOBYQA: derivative-free minimization of a box-constrained function from values alone — a faithful pure-Rust port of PRIMA."
repository = "https://github.com/pawlenartowicz/bobyqa"
documentation = "https://docs.rs/bobyqa"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["optimization", "bobyqa", "derivative-free", "minimization", "powell"]
categories = ["mathematics", "science", "algorithms"]
exclude = ["tests/"]
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
[[bench]]
name = "solver"
harness = false
[features]
count-kernels = []
[lints.rust]
missing_docs = "deny"
[lints.clippy]
all = { level = "deny", priority = 0 }
pedantic = { level = "warn", priority = -1 }
float_cmp = { level = "allow", priority = 1 }
cast_precision_loss = { level = "allow", priority = 1 }
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1