blob: a44229b61d07ee44899852fb1638d3d972640c1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[package]
name = "talpid-windows"
description = "Nice abstractions for Windows"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[target.'cfg(windows)'.dependencies]
thiserror = { workspace = true }
socket2 = { version = "0.5.3" }
futures = { workspace = true }
talpid-types = { path = "../talpid-types" }
[target.'cfg(windows)'.dependencies.windows-sys]
workspace = true
features = [
"Win32_Foundation",
"Win32_Globalization",
"Win32_Security",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_IO",
"Win32_Networking_WinSock",
"Win32_NetworkManagement_IpHelper",
"Win32_NetworkManagement_Ndis",
]
|