This commit is contained in:
Omar Sobh
2026-06-15 21:51:23 -07:00
parent 1f8beb6fea
commit 3f8d2b9d51
73 changed files with 13369 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
[package]
name = "transcription-svc"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7"
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
anyhow = "1"
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
whisper-rs = "0.14"
[dev-dependencies]
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }