27 lines
758 B
TOML
27 lines
758 B
TOML
[package]
|
|
name = "optimizer"
|
|
version = "0.3.0"
|
|
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"] }
|