This commit is contained in:
2026-01-06 19:39:09 +00:00
commit e15d88ef99
14 changed files with 4545 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "whereAmI"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.7", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12", features = ["json"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
tower-http = { version = "0.5", features = ["add-extension"] } # needed for ConnectInfo
chrono = "0.4.42"
dotenvy = "0.15"