23 lines
485 B
TOML
23 lines
485 B
TOML
[package]
|
|
name = "borderpoi-rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Find administrative border crossings along a GPX track"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "borderpoi-rs"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
geo = "0.33.1"
|
|
geo-types = "0.7.19"
|
|
geojson = { version = "1.0.0", features = ["geo-types"] }
|
|
gpx = "0.10.0"
|
|
rstar = "0.13.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|