[package]
edition = "2024"
name = "cobyla"
version = "1.0.1"
authors = ["Remi Lafage <remi.lafage@onera.fr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "COBYLA optimizer for Rust"
documentation = "https://docs.rs/cobyla"
readme = "README.md"
keywords = [
"optimizer",
"optimization",
"constrained",
"derivative-free",
]
categories = [
"algorithms",
"api-bindings",
"science",
]
license-file = "LICENSE.md"
repository = "https://github.com/relf/cobyla/"
[features]
[lib]
name = "cobyla"
path = "src/lib.rs"
[[example]]
name = "paraboloid"
path = "examples/paraboloid.rs"
[dependencies.libc]
version = "0.2"
[dev-dependencies.approx]
version = "0.5"