[package]
edition = "2024"
rust-version = "1.88"
name = "optimizer"
version = "0.3.0"
authors = ["Manuel Raimann <raimannma@outlook.de"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for optimization algorithms."
readme = "README.md"
license = "MIT"
repository = "https://github.com/raimannma/rust-optimizer"
[features]
async = ["dep:tokio"]
default = []
[lib]
name = "optimizer"
path = "src/lib.rs"
[[test]]
name = "async_tests"
path = "tests/async_tests.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rand]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt-multi-thread",
]
optional = true
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]