initial commit

This commit is contained in:
2026-05-12 17:27:18 +08:00
commit 38fc33cabf
10 changed files with 5505 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "location2address"
version = "0.1.0"
edition = "2021"
[dependencies]
eframe = "0.29"
egui = "0.29"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4"
env_logger = "0.11"
[profile.release]
opt-level = 2
lto = true
strip = true