[package]
edition = "2021"
name = "drone-vrp"
version = "1.0.0"
authors = ["spacialglaciercom-lab"]
build = false
exclude = [
".env",
"*.rmp",
"*.geojson",
"*.onnx",
"*.gpx",
"models/",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Drone Vehicle Routing Problem solver with physics-based energy models for UAV delivery — supports DJI FlyCart 30, Ukrainian drones (R18, Vampire, PD-2, HeavyShot, Kazhan, Nemesis), and DJI Matrice 350 RTK"
documentation = "https://docs.rs/drone-vrp"
readme = "README.md"
keywords = [
"drone",
"vrp",
"vehicle-routing",
"uav",
"battery",
]
categories = [
"algorithms",
"science",
"aerospace::unmanned-aerial-vehicles",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/spacialglaciercom-lab/drone-vrp"
[lib]
name = "drone_vrp"
path = "src/lib.rs"
[[bin]]
name = "drone-vrp"
path = "src/bin/cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.geojson]
version = "0.24"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"