Files
rust-optimizer/Cargo.toml
T
2026-01-31 11:34:36 +01:00

27 lines
758 B
TOML

[package]
name = "optimizer"
version = "0.3.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"
documentation = "https://docs.rs/optimizer"
keywords = ["optimization", "hyperparameter", "tpe", "grid-search", "bayesian"]
categories = ["algorithm", "science", "data-structures"]
readme = "README.md"
[dependencies]
rand = "0.9"
thiserror = "2"
parking_lot = "0.12"
tokio = { version = "1", features = ["sync", "rt-multi-thread"], optional = true }
[features]
default = []
async = ["dep:tokio"]
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }