-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
69 lines (59 loc) · 1.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "dfw"
version = "1.3.0"
edition = "2021"
authors = ["Pit Kleyersburg <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Docker firewall framework, in Rust"
homepage = "https://github.com/pitkley/dfw"
repository = "https://github.com/pitkley/dfw.git"
readme = "README.md"
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["cli", "docker", "firewall"]
include = [
"**/*.rs",
"resources/**/*",
"Cargo.toml",
"LICENSE-*",
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
bollard = "^0.15"
clap = { version = "^3.2", features = ["cargo", "derive"] }
crossbeam-channel = "^0.5"
derive_builder = "^0.12"
failure= "^0.1"
futures = "^0.3"
glob = "^0.3"
lazy_static = "^1"
libc = "^0.2"
maplit = "^1"
serde = { version = "^1", features = ["derive"] }
signal-hook = "^0.3"
slog = { version = "^2", features = ["max_level_trace"] }
sloggers = "^2.1"
strum = { version = "^0.25", features = ["derive"] }
tempfile = "^3.9"
time = { version = "^0.3", features = ["formatting"] }
tokio = "^1.35"
toml = "^0.8"
url = "^2.5"
[dev-dependencies]
eval = "^0.4"
itertools = "^0.12"
lazy_static = "^1"
regex = "^1"
paste = "^1"
[build-dependencies]
version-compare = "^0.1"
[[bin]]
name = "dfw"
path = "src/bin/dfw.rs"
doc = false
[features]
docker-tests = []
[profile.release]
lto = true
codegen-units = 1
incremental = false