[package]
edition = "2021"
name = "rapid_solve"
version = "0.1.7"
authors = ["Leon Sering"]
build = false
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"resources/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides a metaheuristic framework for solving combinatorial optimization problems."
readme = "README.md"
keywords = [
"metaheuristic",
"local_search",
"simulated_annealing",
"threshold_accepting",
"tabu_search",
]
categories = [
"algorithms",
"science",
]
license = "MIT"
repository = "https://github.com/LeonSering/rapid_solve"
[lib]
name = "rapid_solve"
path = "src/lib.rs"
[[bin]]
name = "rapid_solve_tsp_example"
path = "src/examples/tsp/main.rs"
[dependencies.itertools]
version = "0.14.0"
[dependencies.rand]
version = "0.10.1"
[dependencies.rapid_time]
version = "0.1.2"
[dependencies.rayon]
version = "1.12.0"
[dependencies.serde_json]
version = "1.0.149"
features = ["preserve_order"]