-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
50 lines (45 loc) · 962 Bytes
/
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
[package]
name = "cntr"
edition = "2021"
description = "A container debugging tool based on FUSE"
version = "1.5.4"
authors = ["Jörg Thalheim <[email protected]>"]
categories = ["development-tools::debugging", "os::unix-apis"]
repository = "https://github.com/Mic92/cntr"
license = "MIT"
[dependencies]
cpuprofiler = { version = "0.0.4", optional = true }
clap = { version = "4", default-features = false, features = [
"std",
"cargo",
"derive",
"help",
] }
log = "0.4.22"
libc = "0.2.161"
parking_lot = "0.12.3"
nix = { version = "0.29.0", features = [
"fs",
"mount",
"poll",
"process",
"sched",
"signal",
"socket",
"user",
"term",
] }
container-pid = "0.2.0"
simple-error = "0.3.1"
cntr-fuse = { version = "0.4.2", default-features = false }
chashmap = "2.2.2"
[[bin]]
name = "cntr"
path = "src/bin/main.rs"
[profile.release]
lto = true
[features]
verbose_fuse_test_log = []
profiling = []
[dev-dependencies]
lazy_static = "1.5"