21 lines
402 B
TOML
21 lines
402 B
TOML
[package]
|
|
name = "lanparty-client-tap"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
lanparty-proto = { path = "../lanparty-proto" }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
windows-sys = {
|
|
workspace = true,
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_IO",
|
|
"Win32_System_Registry",
|
|
]
|
|
}
|