2022-09-21 11:28:28 +08:00
|
|
|
[package]
|
|
|
|
name = "rustdesk-portable-packer"
|
2024-06-03 21:01:41 +08:00
|
|
|
version = "1.2.6"
|
2022-09-21 11:28:28 +08:00
|
|
|
edition = "2021"
|
2024-03-14 20:38:57 +08:00
|
|
|
description = "RustDesk Remote Desktop"
|
2022-09-21 11:28:28 +08:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-23 19:52:53 +08:00
|
|
|
brotli = "3.4"
|
2023-05-11 12:04:38 +08:00
|
|
|
dirs = "5.0"
|
|
|
|
md5 = "0.7"
|
2023-06-05 20:27:48 +08:00
|
|
|
winapi = { version = "0.3", features = ["winbase"] }
|
2024-03-04 22:19:18 +08:00
|
|
|
|
|
|
|
[package.metadata.winres]
|
2024-03-14 20:38:57 +08:00
|
|
|
LegalCopyright = "Copyright © 2024 Purslane Ltd. All rights reserved."
|
2024-03-07 17:00:32 +08:00
|
|
|
ProductName = "RustDesk"
|
|
|
|
OriginalFilename = "rustdesk.exe"
|
2024-03-15 00:26:53 +08:00
|
|
|
FileDescription = "RustDesk Remote Desktop"
|
2024-03-04 22:19:18 +08:00
|
|
|
#ProductVersion = ""
|
|
|
|
|
|
|
|
[target.'cfg(target_os="windows")'.build-dependencies]
|
|
|
|
winres = "0.1"
|
|
|
|
winapi = { version = "0.3", features = [ "winnt", "pdh", "synchapi" ] }
|
|
|
|
|
|
|
|
|