2021-03-29 10:59:14 +03:00
[ package ]
name = "rustdesk"
2021-06-26 06:43:38 +03:00
version = "1.1.6"
2021-03-29 10:59:14 +03:00
authors = [ "rustdesk <info@rustdesk.com>" ]
edition = "2018"
build = "build.rs"
description = "A remote control software."
[ features ]
inline = [ ]
cli = [ ]
2021-08-01 06:01:04 +03:00
use_samplerate = [ "samplerate" ]
use_rubato = [ "rubato" ]
use_dasp = [ "dasp" ]
default = [ "use_dasp" ]
2021-03-29 10:59:14 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[ dependencies ]
2021-06-25 14:42:51 +03:00
whoami = "1.1"
2021-03-29 10:59:14 +03:00
scrap = { path = "libs/scrap" }
hbb_common = { path = "libs/hbb_common" }
enigo = { path = "libs/enigo" }
serde_derive = "1.0"
serde = "1.0"
serde_json = "1.0"
cfg-if = "1.0"
lazy_static = "1.4"
sha2 = "0.9"
repng = "0.2"
libc = "0.2"
2021-07-24 13:25:07 +03:00
parity-tokio-ipc = { git = "https://github.com/open-trade/parity-tokio-ipc" }
2021-08-08 23:21:42 +03:00
flexi_logger = "0.17"
2021-03-29 10:59:14 +03:00
runas = "0.2"
2021-07-24 13:25:07 +03:00
magnum-opus = { git = "https://github.com/open-trade/magnum-opus" }
2021-08-01 06:01:04 +03:00
dasp = { version = "0.11" , features = [ "signal" , "interpolate-linear" , "interpolate" ] , optional = true }
rubato = { version = "0.8" , optional = true }
samplerate = { version = "0.2" , optional = true }
2021-03-29 10:59:14 +03:00
async-trait = "0.1"
crc32fast = "1.2"
uuid = { version = "0.8" , features = [ "v4" ] }
clap = "2.33"
rpassword = "5.0"
[ target . 'cfg(not(any(target_os = "android")))' . dependencies ]
2021-08-23 08:04:21 +03:00
cpal = { git = "https://github.com/open-trade/cpal" }
2021-03-29 10:59:14 +03:00
[ target . 'cfg(not(any(target_os = "android", target_os = "ios")))' . dependencies ]
machine-uid = "0.2"
mac_address = "1.1"
2021-07-27 19:00:11 +03:00
sciter-rs = { git = "https://github.com/open-trade/rust-sciter" , branch = "dyn" }
2021-08-11 20:25:32 +03:00
ctrlc = "3.2"
2021-08-20 07:39:10 +03:00
arboard = "2.0"
2021-03-29 10:59:14 +03:00
[ target . 'cfg(target_os = "windows")' . dependencies ]
2021-07-30 22:51:10 +03:00
#systray = { git = "https://github.com/open-trade/systray-rs" }
2021-03-29 10:59:14 +03:00
winapi = { version = "0.3" , features = [ "winuser" ] }
winreg = "0.7"
windows-service = { git = 'https://github.com/mullvad/windows-service-rs.git' }
[ target . 'cfg(target_os = "macos")' . dependencies ]
objc = "0.2"
cocoa = "0.24"
dispatch = "0.2"
core-foundation = "0.9"
core-graphics = "0.22"
[ target . 'cfg(target_os = "linux")' . dependencies ]
libpulse-simple-binding = "2.16"
libpulse-binding = "2.16"
2021-07-24 13:25:07 +03:00
rust-pulsectl = { git = "https://github.com/open-trade/pulsectl" }
2021-03-29 10:59:14 +03:00
[ target . 'cfg(not(any(target_os = "windows", target_os = "android", target_os = "ios")))' . dependencies ]
psutil = "3.2"
[ target . 'cfg(target_os = "android")' . dependencies ]
android_logger = "0.9"
[ workspace ]
members = [ "libs/scrap" , "libs/hbb_common" , "libs/enigo" ]
[ package . metadata . winres ]
LegalCopyright = "Copyright © 2020"
# 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" }
[ dev-dependencies ]
hound = "3.4"
[ package . metadata . bundle ]
name = "RustDesk"
identifier = "com.carriez.rustdesk"
icon = [ "32x32.png" , "128x128.png" , "128x128@2x.png" ]
deb_depends = [ "libgtk-3-0" , "libxcb-randr0" , "libxdo3" , "libxfixes3" , "libxcb-shape0" , "libxcb-xfixes0" , "libasound2" , "libsystemd0" , "pulseaudio" ]
osx_minimum_system_version = "10.14"
#https://github.com/johnthagen/min-sized-rust
#!!! rembember call "strip target/release/rustdesk"
# which reduce binary size a lot
[ profile . release ]
#lto = true
#codegen-units = 1
#panic = 'abort'
#opt-level = 'z' # only have smaller size after strip