Cargo.toml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. [package]
  2. name = "rustdesk"
  3. version = "1.2.4"
  4. authors = ["rustdesk <info@rustdesk.com>"]
  5. edition = "2021"
  6. build= "build.rs"
  7. description = "RustDesk Remote Desktop"
  8. default-run = "rustdesk"
  9. rust-version = "1.75"
  10. [lib]
  11. name = "librustdesk"
  12. crate-type = ["cdylib", "staticlib", "rlib"]
  13. [[bin]]
  14. name = "naming"
  15. path = "src/naming.rs"
  16. [features]
  17. inline = []
  18. cli = []
  19. flutter_texture_render = []
  20. use_samplerate = ["samplerate"]
  21. use_rubato = ["rubato"]
  22. use_dasp = ["dasp"]
  23. flutter = ["flutter_rust_bridge"]
  24. default = ["use_dasp"]
  25. hwcodec = ["scrap/hwcodec"]
  26. vram = ["scrap/vram"]
  27. mediacodec = ["scrap/mediacodec"]
  28. plugin_framework = []
  29. linux-pkg-config = ["magnum-opus/linux-pkg-config", "scrap/linux-pkg-config"]
  30. unix-file-copy-paste = [
  31. "dep:x11-clipboard",
  32. "dep:x11rb",
  33. "dep:percent-encoding",
  34. "dep:once_cell",
  35. "clipboard/unix-file-copy-paste",
  36. ]
  37. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  38. [dependencies]
  39. async-trait = "0.1"
  40. whoami = "1.5.0"
  41. scrap = { path = "libs/scrap", features = ["wayland"] }
  42. hbb_common = { path = "libs/hbb_common" }
  43. serde_derive = "1.0"
  44. serde = "1.0"
  45. serde_json = "1.0"
  46. serde_repr = "0.1"
  47. cfg-if = "1.0"
  48. lazy_static = "1.4"
  49. sha2 = "0.10"
  50. repng = "0.2"
  51. parity-tokio-ipc = { git = "https://github.com/rustdesk-org/parity-tokio-ipc" }
  52. magnum-opus = { git = "https://github.com/rustdesk-org/magnum-opus" }
  53. dasp = { version = "0.11", features = ["signal", "interpolate-linear", "interpolate"], optional = true }
  54. rubato = { version = "0.12", optional = true }
  55. samplerate = { version = "0.2", optional = true }
  56. uuid = { version = "1.3", features = ["v4"] }
  57. clap = "4.2"
  58. rpassword = "7.2"
  59. num_cpus = "1.15"
  60. bytes = { version = "1.4", features = ["serde"] }
  61. default-net = "0.14"
  62. wol-rs = "1.0"
  63. flutter_rust_bridge = { version = "=1.80", features = ["uuid"], optional = true}
  64. errno = "0.3"
  65. rdev = { git = "https://github.com/fufesou/rdev" }
  66. url = { version = "2.3", features = ["serde"] }
  67. crossbeam-queue = "0.3"
  68. hex = "0.4"
  69. chrono = "0.4"
  70. cidr-utils = "0.5"
  71. libloading = "0.8"
  72. fon = "0.6"
  73. zip = "0.6"
  74. shutdown_hooks = "0.1"
  75. totp-rs = { version = "5.4", default-features = false, features = ["gen_secret", "otpauth"] }
  76. [target.'cfg(not(any(target_os = "android", target_os = "linux")))'.dependencies]
  77. cpal = "0.15"
  78. ringbuf = "0.3"
  79. [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
  80. mac_address = "1.1"
  81. sciter-rs = { git = "https://github.com/open-trade/rust-sciter", branch = "dyn" }
  82. sys-locale = "0.3"
  83. enigo = { path = "libs/enigo", features = [ "with_serde" ] }
  84. clipboard = { path = "libs/clipboard" }
  85. ctrlc = "3.2"
  86. arboard = { git = "https://github.com/fufesou/arboard", branch = "feat/x11_set_conn_timeout", features = ["wayland-data-control"] }
  87. system_shutdown = "4.0"
  88. qrcode-generator = "4.1"
  89. [target.'cfg(target_os = "windows")'.dependencies]
  90. winapi = { version = "0.3", features = [
  91. "winuser",
  92. "wincrypt",
  93. "shellscalingapi",
  94. "pdh",
  95. "synchapi",
  96. "memoryapi",
  97. "shellapi",
  98. "devguid",
  99. "setupapi",
  100. "cguid",
  101. "cfgmgr32",
  102. "ioapiset",
  103. ] }
  104. winreg = "0.11"
  105. windows-service = "0.6"
  106. virtual_display = { path = "libs/virtual_display" }
  107. impersonate_system = { git = "https://github.com/21pages/impersonate-system" }
  108. shared_memory = "0.12"
  109. tauri-winrt-notification = "0.1.2"
  110. runas = "1.2"
  111. [target.'cfg(target_os = "macos")'.dependencies]
  112. objc = "0.2"
  113. cocoa = "0.24"
  114. dispatch = "0.2"
  115. core-foundation = "0.9"
  116. core-graphics = "0.22"
  117. include_dir = "0.7"
  118. fruitbasket = "0.10"
  119. objc_id = "0.1"
  120. [target.'cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))'.dependencies]
  121. tray-icon = { git = "https://github.com/tauri-apps/tray-icon" }
  122. tao = { git = "https://github.com/rustdesk-org/tao", branch = "dev" }
  123. image = "0.24"
  124. [target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies]
  125. keepawake = { git = "https://github.com/rustdesk-org/keepawake-rs" }
  126. [target.'cfg(any(target_os = "windows", target_os = "linux"))'.dependencies]
  127. wallpaper = { git = "https://github.com/21pages/wallpaper.rs" }
  128. [target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies]
  129. # https://github.com/rustdesk/rustdesk-server-pro/issues/189, using native-tls for better tls support
  130. reqwest = { git = "https://github.com/rustdesk-org/reqwest", features = ["blocking", "socks", "json", "native-tls", "gzip"], default-features=false }
  131. [target.'cfg(not(any(target_os = "macos", target_os = "windows")))'.dependencies]
  132. reqwest = { git = "https://github.com/rustdesk-org/reqwest", features = ["blocking", "socks", "json", "rustls-tls", "rustls-tls-native-roots", "gzip"], default-features=false }
  133. [target.'cfg(target_os = "linux")'.dependencies]
  134. psimple = { package = "libpulse-simple-binding", version = "2.27" }
  135. pulse = { package = "libpulse-binding", version = "2.27" }
  136. rust-pulsectl = { git = "https://github.com/open-trade/pulsectl" }
  137. async-process = "1.7"
  138. mouce = { git="https://github.com/fufesou/mouce.git" }
  139. evdev = { git="https://github.com/fufesou/evdev" }
  140. dbus = "0.9"
  141. dbus-crossroads = "0.5"
  142. pam = { git="https://github.com/fufesou/pam" }
  143. users = { version = "0.11" }
  144. x11-clipboard = {git="https://github.com/clslaid/x11-clipboard", branch = "feat/store-batch", optional = true}
  145. x11rb = {version = "0.12", features = ["all-extensions"], optional = true}
  146. percent-encoding = {version = "2.3", optional = true}
  147. once_cell = {version = "1.18", optional = true}
  148. [target.'cfg(target_os = "android")'.dependencies]
  149. android_logger = "0.13"
  150. jni = "0.21"
  151. android-wakelock = { git = "https://github.com/21pages/android-wakelock" }
  152. [workspace]
  153. members = ["libs/scrap", "libs/hbb_common", "libs/enigo", "libs/clipboard", "libs/virtual_display", "libs/virtual_display/dylib", "libs/portable"]
  154. exclude = ["vdi/host", "examples/custom_plugin"]
  155. [package.metadata.winres]
  156. LegalCopyright = "Copyright © 2024 Purslane Ltd. All rights reserved."
  157. ProductName = "RustDesk"
  158. FileDescription = "RustDesk Remote Desktop"
  159. OriginalFilename = "rustdesk.exe"
  160. [target.'cfg(target_os="windows")'.build-dependencies]
  161. winres = "0.1"
  162. winapi = { version = "0.3", features = [ "winnt", "pdh", "synchapi" ] }
  163. [build-dependencies]
  164. cc = "1.0"
  165. hbb_common = { path = "libs/hbb_common" }
  166. os-version = "0.2"
  167. [dev-dependencies]
  168. hound = "3.5"
  169. [package.metadata.bundle]
  170. name = "RustDesk"
  171. identifier = "com.carriez.rustdesk"
  172. icon = ["res/32x32.png", "res/128x128.png", "res/128x128@2x.png"]
  173. osx_minimum_system_version = "10.14"
  174. #https://github.com/johnthagen/min-sized-rust
  175. [profile.release]
  176. lto = true
  177. codegen-units = 1
  178. panic = 'abort'
  179. strip = true
  180. #opt-level = 'z' # only have smaller size after strip
  181. rpath = true
  182. [profile.dev]
  183. split-debuginfo = '...' # Platform-specific.
  184. #strip = "debuginfo"