start with chatgpt

This commit is contained in:
Jonas Rabenstein 2026-08-12 01:01:53 +02:00
commit c78520ee65
7 changed files with 2086 additions and 0 deletions

23
Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[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"