rapid_solve 0.1.7

This library provides a metaheuristic framework for solving combinatorial optimization problems.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"]