[package]
edition = "2021"
name = "frostfire"
version = "0.1.2"
authors = ["Frostfire Team"]
build = false
exclude = [
"target/",
"Cargo.lock",
".github/",
"benches/",
"tests/",
"*.json",
"*.md",
"!README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modular, mathematically rigorous, performant, reusable simulated annealing optimization engine"
readme = "README.md"
keywords = [
"optimization",
"simulated-annealing",
"metaheuristic",
"stochastic",
]
categories = [
"algorithms",
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/copyleftdev/frostfire"
[lib]
name = "frostfire"
path = "src/lib.rs"
[dependencies.log]
version = "0.4.17"
[dependencies.rand]
version = "0.8.5"
[dependencies.rand_chacha]
version = "0.3.1"
[dev-dependencies.criterion]
version = "0.4.0"
[dev-dependencies.proptest]
version = "1.0.0"