Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,697 changes: 1,952 additions & 745 deletions openless-all/app/src-tauri/Cargo.lock

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions openless-all/app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ rust-version = "1.88"
name = "openless_lib"
crate-type = ["staticlib", "cdylib", "rlib"]

[[bin]]
name = "egui_popup"
path = "src/bin/egui_popup.rs"
required-features = ["egui-popup-bin"]

[build-dependencies]
tauri-build = { version = "2", features = [] }
# Compile vendored Open-Less/qwen-asr C sources for the local ASR engine on macOS.
Expand Down Expand Up @@ -78,6 +83,8 @@ enigo = "0.3"
arboard = { version = "3", features = ["wayland-data-control"] }
rcgen = "^0.13"
local-ip-address = "^0.6"
egui = "=0.33.3"
eframe = { version = "=0.33.3", default-features = false, features = ["glow", "default_fonts", "accesskit"] }
rustls = { version = "^0.23", default-features = false, features = ["ring", "std", "tls12", "logging"] }
tokio-rustls = { version = "^0.26", default-features = false, features = ["ring", "tls12", "logging"] }
axum = { version = "^0.7", default-features = false, features = ["ws", "http1", "tokio", "query"] }
Expand All @@ -103,6 +110,9 @@ libc = "0.2"
[target.'cfg(target_os = "linux")'.dependencies]
dbus = "0.9"
gtk = "0.18"
# Linux 为桌面端 eframe 依赖追加 Wayland/X11 后端;QA 本身在三桌面平台启用。
eframe = { version = "=0.33.3", default-features = false, features = ["wayland", "x11"] }
winit = { version = "0.30", features = ["wayland", "x11"] }
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android")))'.dependencies.keyring]
version = "3.6.3"
default-features = false
Expand Down Expand Up @@ -166,6 +176,9 @@ window-vibrancy = "0.7"
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]
# 独立 popup bin 仅用于本地调试;发布版通过隐藏参数复用主程序。
# required-features 防止 Android/iOS 的 cargo check 自动构建桌面 egui bin。
egui-popup-bin = []

[profile.release]
# 之前没有 [profile.release] —— 发布版走 Cargo 默认(无 LTO、不 strip、
Expand Down
Loading
Loading