forked from pitkley/dfw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (51 loc) · 1.11 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
[package]
name = "dfw"
version = "1.0.2-alpha.0"
edition = "2018"
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"
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["cli", "docker", "firewall"]
include = [
"**/*.rs",
"resources/**/*",
"Cargo.toml",
"LICENSE-*",
]
[dependencies]
clap = "^2.33"
crossbeam-channel = "^0.4"
derive_builder = "^0.9"
failure= "^0.1"
glob = "^0.3"
iptables = "^0.2"
libc = "^0.2"
serde = { version = "^1", features = ["derive"] }
signal-hook = "^0.1"
shiplift = "^0.3"
slog = { version = "^2", features = ["max_level_trace"] }
sloggers = "^1.0"
strum = "^0.18"
strum_macros = "^0.18"
tempfile = "^3.1"
time = "^0.2"
toml = "^0.5"
url = "^2.1"
[dev-dependencies]
eval = "^0.4"
itertools = "0.9.0"
lazy_static = "^1"
regex = "^1"
[[bin]]
name = "dfw"
path = "src/bin/dfw.rs"
doc = false
[features]
docker-tests = []
[profile.release]
lto = true
codegen-units = 1
incremental = false