Initial Commit

This commit is contained in:
2026-03-15 23:14:54 +01:00
commit 492014ec30
5 changed files with 2048 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "osm-proxy"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.8"
http-body-util = "0.1.3"
reqwest = "0.13.2"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = [
"rt",
"rt-multi-thread",
"sync",
"macros",
"net",
"signal",
] }
tower-http = { version = "0.6.8", features = ["fs", "trace", "cors"] }