33 lines
573 B
TOML
33 lines
573 B
TOML
[package]
|
|
name = "win-tun-tap"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4.17"
|
|
winreg = "0.7"
|
|
scopeguard = "1.1"
|
|
libloading = "0.7"
|
|
widestring = "0.4"
|
|
once_cell = "1.8"
|
|
itertools = "0.10.1"
|
|
|
|
[dependencies.winapi]
|
|
version = "0.3"
|
|
features = [
|
|
"errhandlingapi",
|
|
"combaseapi",
|
|
"ioapiset",
|
|
"winioctl",
|
|
"setupapi",
|
|
"synchapi",
|
|
"netioapi",
|
|
"fileapi",
|
|
"winbase",
|
|
"winerror",
|
|
"ipexport",
|
|
"iphlpapi",
|
|
"handleapi"
|
|
] |