forked from Crockan/MercuryToolbox
38 lines
981 B
TOML
38 lines
981 B
TOML
[package]
|
|
name = "windowsupport"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
readme.workspace = true
|
|
publish.workspace = true
|
|
description = "Shared Windows-native helpers for Mercury Toolbox commands."
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
common = { path = "../common", default-features = false }
|
|
netstat2.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sysinfo.workspace = true
|
|
thiserror.workspace = true
|
|
windows-sys = { workspace = true, features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_Environment",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_Registry",
|
|
"Win32_System_RemoteDesktop",
|
|
"Win32_System_Services",
|
|
"Win32_System_SystemServices",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Shell",
|
|
"Wdk_System_SystemInformation",
|
|
] }
|