Some checks failed
Build Sidecars / Build Sidecar (macOS) (push) Successful in 3m39s
Release / Bump version and tag (push) Has been cancelled
Release / Build App (Linux) (push) Has been cancelled
Release / Build App (Windows) (push) Has been cancelled
Release / Build App (macOS) (push) Has been cancelled
Build Sidecars / Build Sidecar (Windows) (push) Has been cancelled
Build Sidecars / Build Sidecar (Linux) (push) Has been cancelled
CI split: - release.yml: version bump + lightweight app builds (no Python/sidecar) - build-sidecar.yml: builds CPU + CUDA sidecar variants per platform, uploads as separate release assets, runs in parallel with app builds - Sidecar workflow uses retry loop to find release (race with version bump) Fixes: - Add reqwest "json" feature for .json() method - Add explicit type annotations for reqwest Response and bytes::Bytes - Reuse client instance for download (was using reqwest::get directly) Bundle targets: deb, rpm, nsis, msi, dmg (all formats, app is small now) Windows upload finds both *.msi and *-setup.exe Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
890 B
TOML
29 lines
890 B
TOML
[package]
|
|
name = "voice-to-notes"
|
|
version = "0.2.12"
|
|
description = "Voice to Notes — desktop transcription with speaker identification"
|
|
authors = ["Voice to Notes Contributors"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "voice_to_notes_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
thiserror = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tauri-plugin-dialog = "2.6.0"
|
|
reqwest = { version = "0.12", features = ["stream", "json"] }
|
|
futures-util = "0.3"
|