Files
bcard/Cargo.toml
Mikhail Kilin 22a16affa5
Some checks failed
ci/woodpecker/push/deploy Pipeline failed
Add transcribator page: audio recording + Whisper STT proxy
Browser records audio via MediaRecorder API, bcard proxies it to
Whisper STT service and returns transcription as JSON.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 20:23:28 +03:00

11 lines
306 B
TOML

[package]
name = "bcard"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7", features = ["multipart"] }
reqwest = { version = "0.12", features = ["multipart", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }