optimizer 0.1.1

A Rust library for optimization algorithms.
Documentation
[package]
name = "optimizer"
version = "0.1.1"
edition = "2024"
rust-version = "1.88"
license = "MIT"
authors = ["Manuel Raimann <raimannma@outlook.de"]
description = "A Rust library for optimization algorithms."
repository = "https://github.com/raimannma/rust-optimizer"


[dependencies]
rand = "0.9"
thiserror = "2"
parking_lot = "0.12"
ordered-float = "5"
serde = { version = "1", features = ["derive"], optional = true }
tokio = { version = "1", features = ["sync", "rt-multi-thread"], optional = true }

[features]
default = []
serde = ["dep:serde", "ordered-float/serde"]
async = ["dep:tokio"]

[dev-dependencies]
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }