Rename localhost-proxy to dev-proxy across all configurations and documentation.

This commit is contained in:
geoffsee
2025-08-16 11:05:49 -04:00
parent 9bdb07fb07
commit 294a310eee
7 changed files with 25 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
[package]
name = "dev-proxy"
version = "0.1.0"
edition = "2024"
authors = ["Geoff Seemueller <28698553+geoffsee@users.noreply.github.com>"]
[[bin]]
name = "dev-proxy"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7.9", features = ["macros", "json", "query", "tracing"] }
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "net"] }
reqwest = { version = "0.11.27", features = ["json", "rustls-tls"], default-features = false }
tower = { version = "0.5.2", features = ["tokio", "tracing"] }
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
http = "1.3.1"
bytes = "1.9.0"
thiserror = "1.0"
anyhow = "1.0"