summaryrefslogtreecommitdiff
path: root/tools/stt-client/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/stt-client/Cargo.toml')
-rw-r--r--tools/stt-client/Cargo.toml16
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"