Cargo.toml 880 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "rustdesk-portable-packer"
  3. version = "1.3.3"
  4. edition = "2021"
  5. description = "RustDesk Remote Desktop"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. build = "build.rs"
  8. [dependencies]
  9. brotli = "3.4"
  10. dirs = "5.0"
  11. md5 = "0.7"
  12. winapi = { version = "0.3", features = ["winbase"] }
  13. [target.'cfg(target_os = "windows")'.dependencies]
  14. native-windows-gui = {version = "1.0", default-features = false, features = ["animation-timer", "image-decoder"]}
  15. [package.metadata.winres]
  16. LegalCopyright = "Copyright © 2024 Purslane Ltd. All rights reserved."
  17. ProductName = "RustDesk"
  18. OriginalFilename = "rustdesk.exe"
  19. FileDescription = "RustDesk Remote Desktop"
  20. #ProductVersion = ""
  21. [target.'cfg(target_os="windows")'.build-dependencies]
  22. winres = "0.1"
  23. winapi = { version = "0.3", features = [ "winnt", "pdh", "synchapi" ] }