-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (38 loc) · 1.14 KB
/
Cargo.toml
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
42
[package]
name = "ndisapi"
version = "0.6.0"
edition = "2021"
authors = ["Vadim Smirnov <vadim@ntkernel.com>"]
description = "Rust crate for interacting with the Windows Packet Filter driver (NDISAPI)"
license = "Apache-2.0"
documentation = "https://docs.rs/ndisapi"
repository = "https://github.com/wiresock/ndisapi-rs"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "2.4.2"
futures = "0.3.30"
uuid = { version = "1.7", features = ["v4", "serde", "v6"] }
ipnetwork = "0.20.0"
[dependencies.windows]
version = "0.54.0"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Registry",
"Win32_System_Threading",
"Win32_System_IO",
"Win32_Storage_FileSystem",
"Win32_NetworkManagement_Ndis",
"Win32_Networking_WinSock",
"Win32_NetworkManagement_IpHelper",
"Win32_System_SystemInformation",
]
[dev-dependencies]
clap = {version = "4.5.2", features = ["derive"]}
ctrlc = "3.4.4"
futures = "0.3.30"
tokio = { version = "1.36.0", features = ["full"] }
smoltcp = "0.11.0"
prettytable-rs = "0.10.0"
crossterm = "0.27.0"