58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[package]
|
|
name = "remotedesk-windows-agent"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
description = "RemoteDesk Windows controlled-endpoint agent companion"
|
|
|
|
[[bin]]
|
|
name = "remotedesk-windows-agent"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
base64 = "0.22"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
flate2 = "1.1"
|
|
getrandom = { version = "0.3", features = ["std"] }
|
|
hmac = "=0.13.0"
|
|
memmap2 = "0.9"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "=0.11.0"
|
|
tokio = { version = "1.47", features = ["macros", "net", "rt-multi-thread", "io-util", "sync", "time"] }
|
|
zeroize = "1.8"
|
|
windows = { version = "0.62.2", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Direct3D",
|
|
"Win32_Graphics_Direct3D11",
|
|
"Win32_Graphics_Dxgi",
|
|
"Win32_Graphics_Dxgi_Common",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_Media_MediaFoundation",
|
|
"Win32_System_Com",
|
|
"Win32_System_Ole",
|
|
"Win32_System_Variant",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
cpal = "0.17.3"
|
|
opus2 = { version = "0.4.0", default-features = false, features = ["backend-mousiki"] }
|
|
windows-sys = { version = "0.61.2", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Security_Authorization",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Threading",
|
|
] }
|
|
|
|
[lints.rust]
|
|
unsafe_code = "allow"
|
|
|
|
[lints.clippy]
|
|
all = "warn"
|
|
pedantic = "warn"
|