All checks were successful
Major version bump reflecting the architecture change from PySide6/Qt to Tauri v2 + Svelte 5 with cross-platform support for Windows, macOS, and Linux. Key changes since v1.4.0: - Tauri v2 native desktop shell replacing PySide6/Qt - Svelte 5 reactive frontend - Headless Python backend as a downloadable sidecar - Deepgram cloud transcription (managed + BYOK) - Gitea CI/CD with per-OS builds and automated releases - Sidecar auto-update checking on startup - 63-test suite (Python + Svelte + Rust) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
810 B
TOML
31 lines
810 B
TOML
[package]
|
|
name = "local-transcription"
|
|
version = "2.0.0"
|
|
description = "Real-time speech-to-text transcription for streamers"
|
|
authors = ["Local Transcription Contributors"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "local_transcription_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-process = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
futures-util = "0.3"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
bytes = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
chrono = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|