2025-06-14 15:14:08 -04:00
|
|
|
[package]
|
|
|
|
|
name = "bloop-backend"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
2025-06-14 17:36:54 -04:00
|
|
|
default-run = "bloop-backend"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "bloop_backend"
|
|
|
|
|
path = "src/lib.rs"
|
2025-06-14 15:14:08 -04:00
|
|
|
|
|
|
|
|
[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 }
|
2025-06-14 15:34:24 -04:00
|
|
|
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] }
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
|
|
|
dotenvy = "0.15"
|
2025-06-14 16:26:48 -04:00
|
|
|
bcrypt = "0.15"
|
|
|
|
|
jsonwebtoken = "9.2"
|
2025-06-14 17:36:54 -04:00
|
|
|
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
|
2025-06-16 16:16:42 -04:00
|
|
|
dirs = "5.0"
|
2025-06-16 17:15:51 -04:00
|
|
|
git2 = "0.18"
|
2025-06-16 18:37:19 -04:00
|
|
|
async-trait = "0.1"
|
2025-06-16 23:47:16 -04:00
|
|
|
dissimilar = "1.0"
|
2025-06-17 11:24:03 -04:00
|
|
|
rust-embed = "8.2"
|
|
|
|
|
mime_guess = "2.0"
|
2025-06-14 17:36:54 -04:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
|