-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 1004 Bytes
/
Cargo.toml
File metadata and controls
43 lines (36 loc) · 1004 Bytes
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
[package]
name = "nym-firewall"
version.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
edition.workspace = true
license.workspace = true
[lints]
workspace = true
[features]
cgroup2 = []
[dependencies]
ipnetwork.workspace = true
libc.workspace = true
thiserror.workspace = true
tracing.workspace = true
nym-common.workspace = true
nym-firewall-config.workspace = true
[target.'cfg(target_os = "macos")'.dependencies]
pfctl.workspace = true
nym-platform-metadata.workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
nix = { workspace = true, features = ["net"] }
nftnl = { workspace = true, features = ["nftnl-1-2-0"] }
mnl = { workspace = true, features = ["mnl-1-0-4"] }
nym-cgroup.workspace = true
[target.'cfg(windows)'.dependencies]
log.workspace = true
wmi.workspace = true
widestring.workspace = true
windows = { workspace = true, features = [
"Win32_Globalization",
"Win32_System_Wmi",
] }