2021-03-29 15:59:14 +08:00
|
|
|
[package]
|
|
|
|
name = "rustdesk"
|
2022-09-07 22:00:42 +08:00
|
|
|
version = "1.2.0"
|
2021-03-29 15:59:14 +08:00
|
|
|
authors = ["rustdesk <info@rustdesk.com>"]
|
2022-04-20 20:44:48 +08:00
|
|
|
edition = "2021"
|
2021-03-29 15:59:14 +08:00
|
|
|
build= "build.rs"
|
|
|
|
description = "A remote control software."
|
2022-05-12 17:35:25 +08:00
|
|
|
default-run = "rustdesk"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "librustdesk"
|
2023-02-23 18:03:40 +08:00
|
|
|
crate-type = ["cdylib", "staticlib", "rlib"]
|
2022-05-12 17:35:25 +08:00
|
|
|
|
|
|
|
[[bin]]
|
2022-05-13 20:30:22 +08:00
|
|
|
name = "naming"
|
|
|
|
path = "src/naming.rs"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
inline = []
|
2022-05-12 17:35:25 +08:00
|
|
|
hbbs = []
|
2021-03-29 15:59:14 +08:00
|
|
|
cli = []
|
2023-02-22 09:43:57 +08:00
|
|
|
flutter_texture_render = []
|
2022-06-09 17:30:26 +08:00
|
|
|
appimage = []
|
2022-09-10 06:44:35 +08:00
|
|
|
flatpak = []
|
2021-08-01 11:01:04 +08:00
|
|
|
use_samplerate = ["samplerate"]
|
|
|
|
use_rubato = ["rubato"]
|
|
|
|
use_dasp = ["dasp"]
|
2022-05-25 20:23:02 +08:00
|
|
|
flutter = ["flutter_rust_bridge"]
|
2022-09-12 12:31:02 +08:00
|
|
|
default = ["use_dasp"]
|
2022-06-09 19:46:41 +08:00
|
|
|
hwcodec = ["scrap/hwcodec"]
|
2022-09-15 20:40:29 +08:00
|
|
|
mediacodec = ["scrap/mediacodec"]
|
2023-04-23 09:43:47 +08:00
|
|
|
linux_headless = ["pam" ]
|
2023-04-13 23:00:24 +08:00
|
|
|
virtual_display_driver = ["virtual_display"]
|
2023-04-18 23:02:37 +08:00
|
|
|
plugin_framework = []
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-26 15:34:10 +08:00
|
|
|
whoami = "1.2"
|
2022-07-07 01:27:21 +08:00
|
|
|
scrap = { path = "libs/scrap", features = ["wayland"] }
|
2021-03-29 15:59:14 +08:00
|
|
|
hbb_common = { path = "libs/hbb_common" }
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
cfg-if = "1.0"
|
|
|
|
lazy_static = "1.4"
|
2021-12-26 15:34:10 +08:00
|
|
|
sha2 = "0.10"
|
2021-03-29 15:59:14 +08:00
|
|
|
repng = "0.2"
|
2021-07-24 18:25:07 +08:00
|
|
|
parity-tokio-ipc = { git = "https://github.com/open-trade/parity-tokio-ipc" }
|
2023-03-09 17:22:14 +08:00
|
|
|
runas = "1.0"
|
2022-12-12 09:41:46 +08:00
|
|
|
magnum-opus = { git = "https://github.com/rustdesk/magnum-opus" }
|
2021-08-01 11:01:04 +08:00
|
|
|
dasp = { version = "0.11", features = ["signal", "interpolate-linear", "interpolate"], optional = true }
|
2022-04-06 10:51:24 +08:00
|
|
|
rubato = { version = "0.12", optional = true }
|
2021-08-01 11:01:04 +08:00
|
|
|
samplerate = { version = "0.2", optional = true }
|
2021-03-29 15:59:14 +08:00
|
|
|
async-trait = "0.1"
|
2022-05-12 17:35:25 +08:00
|
|
|
uuid = { version = "1.0", features = ["v4"] }
|
2023-03-09 17:22:14 +08:00
|
|
|
clap = "4.1"
|
2022-07-18 12:15:10 +08:00
|
|
|
rpassword = "7.0"
|
2023-03-09 17:22:14 +08:00
|
|
|
base64 = "0.21"
|
2022-01-24 02:26:07 +08:00
|
|
|
num_cpus = "1.13"
|
2022-07-21 16:07:19 +08:00
|
|
|
bytes = { version = "1.2", features = ["serde"] }
|
2023-03-30 18:24:54 +08:00
|
|
|
default-net = "0.14"
|
2023-03-09 17:22:14 +08:00
|
|
|
wol-rs = "1.0"
|
2023-01-19 21:21:28 +08:00
|
|
|
flutter_rust_bridge = { version = "1.61.1", optional = true }
|
2023-03-09 17:22:14 +08:00
|
|
|
errno = "0.3"
|
2022-12-28 15:20:42 +08:00
|
|
|
rdev = { git = "https://github.com/fufesou/rdev" }
|
2022-10-19 22:48:51 +08:00
|
|
|
url = { version = "2.1", features = ["serde"] }
|
2023-03-29 21:59:25 +08:00
|
|
|
crossbeam-queue = "0.3"
|
2023-03-30 18:24:54 +08:00
|
|
|
hex = "0.4"
|
2022-10-22 22:19:14 +08:00
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"], default-features=false }
|
2023-03-30 18:24:54 +08:00
|
|
|
chrono = "0.4"
|
|
|
|
cidr-utils = "0.5"
|
2023-04-19 12:06:01 +08:00
|
|
|
libloading = "0.7"
|
2023-04-20 17:26:17 +08:00
|
|
|
fon = "0.6"
|
2022-05-12 17:35:25 +08:00
|
|
|
|
2022-04-23 02:17:33 +08:00
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "linux")))'.dependencies]
|
2023-04-15 09:41:56 +08:00
|
|
|
cpal = "0.15"
|
2023-03-29 16:59:50 +08:00
|
|
|
ringbuf = "0.3"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
|
|
machine-uid = "0.2"
|
|
|
|
mac_address = "1.1"
|
2021-07-28 00:00:11 +08:00
|
|
|
sciter-rs = { git = "https://github.com/open-trade/rust-sciter", branch = "dyn" }
|
2022-05-12 17:35:25 +08:00
|
|
|
sys-locale = "0.2"
|
2022-07-07 01:27:21 +08:00
|
|
|
enigo = { path = "libs/enigo", features = [ "with_serde" ] }
|
2022-05-12 17:35:25 +08:00
|
|
|
clipboard = { path = "libs/clipboard" }
|
2021-08-12 01:25:32 +08:00
|
|
|
ctrlc = "3.2"
|
2023-03-09 17:22:14 +08:00
|
|
|
arboard = "3.2"
|
2022-05-12 17:35:25 +08:00
|
|
|
#minreq = { version = "2.4", features = ["punycode", "https-native"] }
|
2023-03-09 17:22:14 +08:00
|
|
|
system_shutdown = "4.0"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2022-07-18 12:15:10 +08:00
|
|
|
trayicon = { git = "https://github.com/open-trade/trayicon-rs", features = ["winit"] }
|
|
|
|
winit = "0.26"
|
2023-03-07 19:10:37 +08:00
|
|
|
winapi = { version = "0.3", features = ["winuser", "wincrypt"] }
|
2021-12-26 15:34:10 +08:00
|
|
|
winreg = "0.10"
|
|
|
|
windows-service = "0.4"
|
2023-04-13 23:00:24 +08:00
|
|
|
virtual_display = { path = "libs/virtual_display", optional = true }
|
2022-09-26 16:23:09 +08:00
|
|
|
impersonate_system = { git = "https://github.com/21pages/impersonate-system" }
|
2023-03-30 18:24:54 +08:00
|
|
|
shared_memory = "0.12"
|
|
|
|
shutdown_hooks = "0.1"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
objc = "0.2"
|
|
|
|
cocoa = "0.24"
|
|
|
|
dispatch = "0.2"
|
|
|
|
core-foundation = "0.9"
|
|
|
|
core-graphics = "0.22"
|
2023-03-30 18:24:54 +08:00
|
|
|
include_dir = "0.7"
|
2023-02-09 21:28:42 +08:00
|
|
|
dark-light = "1.0"
|
2023-03-30 18:24:54 +08:00
|
|
|
fruitbasket = "0.10"
|
|
|
|
objc_id = "0.1"
|
2022-04-28 21:32:44 +08:00
|
|
|
|
2023-02-09 21:28:42 +08:00
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies]
|
|
|
|
tray-icon = "0.4"
|
2023-05-02 12:52:27 +08:00
|
|
|
tao = { git = "https://github.com/Kingtous/tao", branch = "muda" }
|
2023-02-09 21:28:42 +08:00
|
|
|
image = "0.24"
|
|
|
|
|
2021-03-29 15:59:14 +08:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-04-23 02:17:33 +08:00
|
|
|
psimple = { package = "libpulse-simple-binding", version = "2.25" }
|
|
|
|
pulse = { package = "libpulse-binding", version = "2.26" }
|
2021-07-24 18:25:07 +08:00
|
|
|
rust-pulsectl = { git = "https://github.com/open-trade/pulsectl" }
|
2022-05-12 17:35:25 +08:00
|
|
|
async-process = "1.3"
|
2022-07-07 01:27:21 +08:00
|
|
|
mouce = { git="https://github.com/fufesou/mouce.git" }
|
|
|
|
evdev = { git="https://github.com/fufesou/evdev" }
|
2022-10-11 19:52:03 +08:00
|
|
|
dbus = "0.9"
|
|
|
|
dbus-crossroads = "0.5"
|
2023-04-01 00:28:56 +08:00
|
|
|
pam = { git="https://github.com/fufesou/pam", optional = true }
|
2023-04-23 09:43:47 +08:00
|
|
|
users = { version = "0.11.0" }
|
2022-08-02 18:47:29 +08:00
|
|
|
|
2021-03-29 15:59:14 +08:00
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
2022-04-06 10:51:24 +08:00
|
|
|
android_logger = "0.11"
|
2022-07-14 23:26:03 +08:00
|
|
|
jni = "0.19"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
2022-05-17 19:59:37 +08:00
|
|
|
[target.'cfg(any(target_os = "android", target_os = "ios"))'.dependencies]
|
2023-01-19 21:21:28 +08:00
|
|
|
flutter_rust_bridge = "1.61.1"
|
2022-05-17 19:59:37 +08:00
|
|
|
|
2021-03-29 15:59:14 +08:00
|
|
|
[workspace]
|
2023-04-17 14:18:00 +08:00
|
|
|
members = ["libs/scrap", "libs/hbb_common", "libs/enigo", "libs/clipboard", "libs/virtual_display", "libs/virtual_display/dylib", "libs/portable"]
|
2023-04-13 02:06:42 +08:00
|
|
|
exclude = ["vdi/host", "examples/custom_plugin"]
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[package.metadata.winres]
|
2022-05-12 17:35:25 +08:00
|
|
|
LegalCopyright = "Copyright © 2022 Purslane, Inc."
|
2021-03-29 15:59:14 +08:00
|
|
|
# this FileDescription overrides package.description
|
|
|
|
FileDescription = "RustDesk"
|
|
|
|
|
|
|
|
[target.'cfg(target_os="windows")'.build-dependencies]
|
|
|
|
winres = "0.1"
|
|
|
|
winapi = { version = "0.3", features = [ "winnt" ] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0"
|
|
|
|
hbb_common = { path = "libs/hbb_common" }
|
2023-01-19 21:21:28 +08:00
|
|
|
flutter_rust_bridge_codegen = "1.61.1"
|
2023-03-09 17:22:14 +08:00
|
|
|
os-version = "0.2"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-17 19:26:30 +08:00
|
|
|
hound = "3.5"
|
2021-03-29 15:59:14 +08:00
|
|
|
|
|
|
|
[package.metadata.bundle]
|
|
|
|
name = "RustDesk"
|
|
|
|
identifier = "com.carriez.rustdesk"
|
2022-09-18 11:22:30 +08:00
|
|
|
icon = ["res/32x32.png", "res/128x128.png", "res/128x128@2x.png"]
|
2021-03-29 15:59:14 +08:00
|
|
|
osx_minimum_system_version = "10.14"
|
|
|
|
|
|
|
|
#https://github.com/johnthagen/min-sized-rust
|
|
|
|
[profile.release]
|
2022-05-12 17:35:25 +08:00
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = 'abort'
|
2022-05-25 01:37:01 +08:00
|
|
|
strip = true
|
2021-03-29 15:59:14 +08:00
|
|
|
#opt-level = 'z' # only have smaller size after strip
|
2022-12-08 19:59:37 +08:00
|
|
|
rpath = true
|