diff options
| author | soryu <soryu@soryu.co> | 2025-12-20 15:36:04 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2025-12-23 14:47:18 +0000 |
| commit | 01088f4f1915e36a7d0d8d8756f62f8207a48911 (patch) | |
| tree | 8fdbba900f3f4bba32bae76e2e0378848a90cf93 /tools/stt-client/Cargo.toml | |
| parent | ab9166170043ba5e0ce974e5b7accf0939d686e3 (diff) | |
| download | soryu-01088f4f1915e36a7d0d8d8756f62f8207a48911.tar.gz soryu-01088f4f1915e36a7d0d8d8756f62f8207a48911.zip | |
Implement makima listen websockets server
Diffstat (limited to 'tools/stt-client/Cargo.toml')
| -rw-r--r-- | tools/stt-client/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/stt-client/Cargo.toml b/tools/stt-client/Cargo.toml new file mode 100644 index 0000000..314b27f --- /dev/null +++ b/tools/stt-client/Cargo.toml @@ -0,0 +1,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" |
