optimizer 0.3.0

A Rust library for optimization algorithms.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]