Files
dudu/desktop/src-tauri/Cargo.toml
T
wangjia 45e40ccd13
ci / server (push) Failing after 11s
ci / design-tokens (push) Failing after 10s
desktop: 联调发现的透明窗口修复 + 联调验收报告与文档索引
- tauri.conf.json 启用 macOSPrivateApi、Cargo.toml 加 macos-private-api feature:
  overlay/tray 为 transparent 窗口,macOS 上 WKWebView 透明必须开启该项,
  否则浮层带不透明底色(tauri dev 启动日志明确告警)
- doc/desktop-integration-acceptance.html:#12/#1C 联调验收报告
  (mac 全链路通过、12B 延迟基线与短句问题、12C 四场景全过、商业链路通过、遗留项清单)
- doc/index.html:项目文档索引(全局文档规范要求)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-10 12:18:22 +08:00

31 lines
883 B
TOML

[package]
name = "dudu-desktop"
version = "0.1.0"
description = "dudu 语音输入法桌面端"
edition = "2021"
[lib]
name = "dudu_desktop_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["tray-icon", "macos-private-api"] }
tauri-plugin-global-shortcut = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
futures-util = "0.3"
cpal = "0.15"
arboard = "3"
enigo = "0.2"
parking_lot = "0.12"
uuid = { version = "1", features = ["v4"] }
reqwest = { version = "0.12", features = ["json", "multipart", "rustls-tls"], default-features = false }
base64 = "0.22"
log = "0.4"
env_logger = "0.11"