-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (40 loc) · 1.19 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
43
44
45
46
[workspace]
resolver="2"
members = [
"driver/ndis-rs",
"driver/ndisprot-kmdf",
"driver/wdf-kmdf-sys",
"driver/windows-kernel-sys",
"driver/windows-kernel-rs",
"driver/wdf-kmdf",
"libs/vtable",
"libs/once-arc",
"prottest"
, "driver/mux-notify", "driver/mux", "driver/wdf-kmdf-build", "driver/ra-check-hack", "driver/recv-queue"]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
ndis-rs = { path = "driver/ndis-rs" }
nt-list = { version = "0.3.0", default-features = false }
moveit = "0.6.0"
once-arc = { path = "libs/once-arc", default-features = false }
pinned-init = { version = "0.0.6", default-features = false, features = ["alloc"] }
wdf-kmdf-build = { path = "driver/wdf-kmdf-build" }
windows-kernel-sys = { path = "driver/windows-kernel-sys" }
windows-kernel-rs = { path = "driver/windows-kernel-rs" }
vtable = { path = "libs/vtable" }
bindgen = "0.69.4"
bitflags = "2.3.3"
cc = "1.0"
crossbeam-utils = { version = "0.8.16", default-features = false }
static_assertions = "1.1.0"
thiserror = "1.0.57"
windows-registry = "0.1.1"
windows = "0.56.0"
windows-core = "0.56.0"
[profile.dev]
panic = "abort"
[profile.release]
lto = "thin"
panic = "abort"