summaryrefslogtreecommitdiffhomepage
path: root/talpid-windows/Cargo.toml
blob: 0a8489879fc24424012db0c2b14638cdb8c80a32 (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
[package]
name = "talpid-windows"
description = "Nice abstractions for Windows"
version.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
publish.workspace = true

[target.'cfg(windows)'.dependencies]
err-derive = { workspace = true }
socket2 = { version = "0.5.3" }
futures = "0.3.15"

talpid-types = { path = "../talpid-types" }

[target.'cfg(windows)'.dependencies.windows-sys]
workspace = true
features = [
    "Win32_Foundation",
    "Win32_Globalization",
    "Win32_System_Diagnostics_ToolHelp",
    "Win32_System_IO",
    "Win32_Networking_WinSock",
    "Win32_NetworkManagement_IpHelper",
    "Win32_NetworkManagement_Ndis",
]