-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 963 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rapid_solve"
version = "0.1.4"
edition = "2021"
license = "MIT"
description = "This library provides a metaheuristic framework for solving combinatorial optimization problems."
keywords = ["metaheuristic", "local_search", "simulated_annealing", "threshold_accepting", "tabu_search"]
categories = ["algorithms", "science"]
repository = "https://github.com/LeonSering/rapid_solve"
readme = "README.md"
authors = ["Leon Sering"]
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"resources/**",
]
[[bin]]
name = "rapid_solve_tsp_example"
path = "src/examples/tsp/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rayon = "1.5.1" # for parallel iterator
itertools = "0.12.0"
serde_json = { version = "1.0", features = ["preserve_order"]} # for reading json-files
rand = "0.8.4" # for random number generation
rapid_time = "0.1.2" # for durations and datetime