[package]
edition = "2021"
name = "rosomaxa"
version = "0.9.0"
authors = ["Ilya Builuk <ilya.builuk@gmail.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rosomaxa algorithm and other building blocks for creating a solver for optimization problems"
homepage = "https://github.com/reinterpretcat/vrp"
readme = "README.md"
keywords = [
"vrp",
"optimization",
]
categories = [
"algorithms",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/reinterpretcat/vrp"
[lib]
name = "rosomaxa"
path = "src/lib.rs"
[dependencies.rand]
version = "0.8.5"
features = ["small_rng"]
[dependencies.rand_distr]
version = "0.4.3"
[dependencies.rayon]
version = "1.10.0"
[dependencies.rustc-hash]
version = "2.0.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.num_cpus]
version = "1.16.0"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2.15"
features = ["js"]
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3.72"