blob: 696eb2da9726aeca4f9371550d4f6ed7796ee57b (
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
32
33
34
35
36
37
38
39
40
41
|
[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 = { workspace = true }
futures = { workspace = true }
talpid-types = { path = "../talpid-types" }
[target.'cfg(windows)'.dependencies.windows-sys]
workspace = true
features = [
"Win32_Foundation",
"Win32_Globalization",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_IO",
"Win32_System_SystemInformation",
"Win32_System_Threading",
"Win32_Networking_WinSock",
"Win32_NetworkManagement_IpHelper",
"Win32_NetworkManagement_Ndis",
]
[target.'cfg(windows)'.dev-dependencies.windows-sys]
workspace = true
features = [
"Win32_Storage",
"Win32_Storage_FileSystem"
]
|