blob: 314b27f9d260d9f7d7838f8dba225631c73b463b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[package]
name = "stt-client"
version = "0.1.0"
edition = "2021"
description = "WebSocket client for testing the Makima STT streaming endpoint"
[dependencies]
tokio = { version = "1.0", features = ["full"] }
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4", features = ["derive"] }
symphonia = { version = "0.5", features = ["mp3", "aac", "flac", "ogg", "vorbis", "wav", "pcm"] }
anyhow = "1.0"
url = "2.5"
|