[package] name = "simulated_annealing" version = "0.2.1" authors = ["Pavel Sobolev "] edition = "2021" rust-version = "1.67.1" description = "An interface for global function optimization using simulated annealing" documentation = "https://docs.rs/simulated_annealing" readme = "README.md" homepage = "https://github.com/paveloom-r/simulated_annealing" repository = "https://github.com/paveloom-r/simulated_annealing" license-file = "LICENSE.md" keywords = ["optimization", "simulated-annealing"] categories = ["mathematics"] [package.metadata.docs.rs] rustdoc-args = [ "--html-in-header", "assets/katex-header.html" ] [dependencies] anyhow = "1.0.70" itertools = "0.10.5" num = "0.4.0" rand = "0.8.5" rand_distr = "0.4.3" rand_xoshiro = "0.6.0"