mirror of
https://github.com/UNITRONIX/BetterDesk.git
synced 2026-09-10 09:35:39 +00:00
6274790bba
Bring native Cliprdr/desktop file IPC from divergent orphan history onto current dev, including base64 coerce and FILEGROUPDESCRIPTOR flags matching RustDesk.
53 lines
1.5 KiB
TOML
53 lines
1.5 KiB
TOML
[package]
|
|
name = "rdclient-desktop"
|
|
version = "0.1.0"
|
|
description = "BetterDesk RdClient operator desktop client"
|
|
authors = ["UNITRONIX"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "rdclient_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["devtools"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-utils = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
sys-locale = "0.3"
|
|
rfd = "0.15"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.58", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Com",
|
|
"Win32_System_DataExchange",
|
|
"Win32_System_Memory",
|
|
"Win32_System_Ole",
|
|
"Win32_System_SystemServices",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_Shell",
|
|
"Win32_UI_Shell_Common",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
|
|
# brotli 8.0.3 on crates.io pulls conflicting alloc-no-stdlib 2.x/3.x; git brotli + unified allocator crate.
|
|
# wry: accept operator-panel TLS (self-signed / incomplete chain) on Linux WebKitGTK.
|
|
[patch.crates-io]
|
|
brotli = { git = "https://github.com/dropbox/rust-brotli" }
|
|
alloc-no-stdlib = { git = "https://github.com/dropbox/rust-alloc-no-stdlib", tag = "3.0.0" }
|
|
wry = { path = "../vendor/wry" }
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|