From 01088f4f1915e36a7d0d8d8756f62f8207a48911 Mon Sep 17 00:00:00 2001 From: soryu Date: Sat, 20 Dec 2025 15:36:04 +0000 Subject: Implement makima listen websockets server --- tools/stt-client/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/stt-client/Cargo.toml (limited to 'tools/stt-client/Cargo.toml') 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" -- cgit v1.2.3