This commit is contained in:
Louis Knight-Webb
2025-06-14 15:14:08 -04:00
commit 563994934d
29 changed files with 5748 additions and 0 deletions

15
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "bloop-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { workspace = true }
axum = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }