rustdesk/libs/portable/Cargo.toml

32 lines
880 B
TOML
Raw Normal View History

2022-09-21 11:28:28 +08:00
[package]
name = "rustdesk-portable-packer"
2024-06-28 09:59:10 +08:00
version = "1.2.7"
2022-09-21 11:28:28 +08:00
edition = "2021"
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"
winapi = { version = "0.3", features = ["winbase"] }
2024-03-04 22:19:18 +08:00
[target.'cfg(target_os = "windows")'.dependencies]
native-windows-gui = {version = "1.0", default-features = false, features = ["animation-timer", "image-decoder"]}
2024-03-04 22:19:18 +08:00
[package.metadata.winres]
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" ] }