mirror of
https://github.com/zhouxiaoka/autoclip.git
synced 2026-09-03 06:24:14 +08:00
- Bump version 1.0.0 → 1.1.0 (tauri.conf.json, Cargo.toml, Cargo.lock); the build script now derives the DMG name from tauri.conf.json so it won't drift. - RELEASE_NOTES.md + CHANGELOG.md: document v1.1.0 (zero-dependency desktop install, end-to-end clip pipeline, black-screen / stuck-list / retry-spam / stuck-pipeline fixes, opt-in faster-whisper, Gemini→google-genai, CI unify + repo cleanup). - Drop two stale doc links to files removed in the cleanup (QUICK_START_GUIDE, SYSTEM_REBUILD_GUIDE). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
29 lines
915 B
TOML
29 lines
915 B
TOML
[package]
|
|
name = "autoclip-desktop"
|
|
version = "1.1.0"
|
|
description = "AutoClip Desktop Application"
|
|
authors = ["AutoClip Team"]
|
|
license = "MIT"
|
|
repository = "https://github.com/zhouxiaoka/autoclip"
|
|
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.0-rc", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0.0-rc", features = ["tray-icon"] }
|
|
tauri-plugin-autostart = "2.0.0-rc"
|
|
tauri-plugin-shell = "2.0.0-rc"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|