mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 04:12:20 +08:00
32 lines
880 B
TOML
32 lines
880 B
TOML
[package]
|
|
name = "rustdesk-portable-packer"
|
|
version = "1.3.1"
|
|
edition = "2021"
|
|
description = "RustDesk Remote Desktop"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
brotli = "3.4"
|
|
dirs = "5.0"
|
|
md5 = "0.7"
|
|
winapi = { version = "0.3", features = ["winbase"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
native-windows-gui = {version = "1.0", default-features = false, features = ["animation-timer", "image-decoder"]}
|
|
|
|
[package.metadata.winres]
|
|
LegalCopyright = "Copyright © 2024 Purslane Ltd. All rights reserved."
|
|
ProductName = "RustDesk"
|
|
OriginalFilename = "rustdesk.exe"
|
|
FileDescription = "RustDesk Remote Desktop"
|
|
#ProductVersion = ""
|
|
|
|
[target.'cfg(target_os="windows")'.build-dependencies]
|
|
winres = "0.1"
|
|
winapi = { version = "0.3", features = [ "winnt", "pdh", "synchapi" ] }
|
|
|
|
|