vrp-cli 1.25.0

A command line interface for VRP solver
Documentation
[[bin]]
name = "vrp-cli"
path = "src/main.rs"

[dependencies.csv]
optional = true
version = "1.3.1"

[dependencies.serde]
features = ["derive"]
version = "1.0.214"

[dependencies.serde_json]
version = "1.0.132"

[dependencies.vrp-core]
optional = true
version = "1.25.0"

[dependencies.vrp-pragmatic]
version = "1.25.0"

[dependencies.vrp-scientific]
optional = true
version = "1.25.0"

[dev-dependencies.tempfile]
version = "3.14.0"

[features]
csv-format = ["csv"]
default = ["vrp-core", "csv-format", "scientific-format"]
py_bindings = ["dep:pyo3"]
scientific-format = ["vrp-scientific"]

[lib]
crate-type = ["cdylib", "lib"]
name = "vrp_cli"
path = "src/lib.rs"

[package]
authors = ["Ilya Builuk <ilya.builuk@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["algorithms", "science"]
description = "A command line interface for VRP solver"
edition = "2021"
homepage = "https://github.com/reinterpretcat/vrp"
keywords = ["vrp", "optimization"]
license = "Apache-2.0"
name = "vrp-cli"
readme = "README.md"
repository = "https://github.com/reinterpretcat/vrp"
version = "1.25.0"

[target.'cfg(all(not(target_arch = "wasm32"), not(tarpaulin)))'.dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.22.6"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.clap]
version = "4.5.20"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.ctrlc]
features = ["termination"]
version = "3.4.5"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.num_cpus]
version = "1.16.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3.72"

[target.'cfg(target_arch = "wasm32")'.dependencies.serde-wasm-bindgen]
version = "0.6.5"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.95"