mirror of
https://github.com/playit-cloud/playit-agent.git
synced 2026-07-03 15:08:44 +00:00
20 lines
543 B
TOML
20 lines
543 B
TOML
[package]
|
|
name = "playitd-windows-setup"
|
|
version.workspace = true
|
|
edition = "2024"
|
|
authors = ["Patrick Lorio <patrick@playit.gg>"]
|
|
description = "Windows installer provisioning helper for playit"
|
|
repository = "https://github.com/playit-cloud/playit-agent"
|
|
|
|
[dependencies]
|
|
playitd = { path = "../playitd", version = "1.0.5" }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
windows = { version = "0.62.2", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Com",
|
|
"Win32_System_Environment",
|
|
"Win32_System_Registry",
|
|
"Win32_UI_Shell",
|
|
] }
|