mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 13:20:39 -07:00
- Added support for generating a multi-size Windows icon (icon.ico) in the update-icons.sh script. - Updated Cargo.toml to include the 'windows' crate with specific features for Windows support. - Bumped version of the 'voicebox' package from 0.1.0 to 0.1.1 in Cargo.lock. - Updated .gitignore to exclude the generated Assets.car file.
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "voicebox"
|
|
version = "0.1.1"
|
|
description = "A production-quality desktop app for Qwen3-TTS voice cloning and generation"
|
|
authors = ["you"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0", features = [] }
|
|
tauri-plugin-dialog = "2.0"
|
|
tauri-plugin-fs = "2.0"
|
|
tauri-plugin-shell = "2.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
hound = "3.5"
|
|
base64 = "0.22"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
screencapturekit = { version = "1", features = ["async"] }
|
|
coreaudio-sys = "0.2"
|
|
objc = "0.2"
|
|
core-foundation-sys = "0.8"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
wasapi = "0.22"
|
|
windows = { version = "0.62", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"] }
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-updater = "2.0"
|
|
|
|
[features]
|
|
# This feature is used for production builds or when `devPath` points to the filesystem
|
|
custom-protocol = ["tauri/custom-protocol"]
|