summaryrefslogtreecommitdiffstats
path: root/below/Cargo.toml
blob: c9649f4ce3915e07edcae270de61676cfcac7598 (plain)
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
# @generated by autocargo

[package]
name = "below"
version = "0.6.0"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "An interactive tool to view and record historical system data"
readme = "../README.md"
repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "1.0.56"
cgroupfs = { version = "0.6.0", path = "cgroupfs" }
clap = { version = "3.2.17", features = ["derive", "regex", "unicode", "wrap_help"] }
clap_complete = "3.0.4"
common = { package = "below-common", version = "0.6.0", path = "common" }
config = { package = "below-config", version = "0.6.0", path = "config" }
cursive = { version = "0.19.0", features = ["crossterm-backend", "termion-backend"], default-features = false }
dump = { package = "below-dump", version = "0.6.0", path = "dump" }
futures = { version = "0.3.22", features = ["async-await", "compat"] }
indicatif = { version = "0.16", features = ["with_rayon"] }
libbpf-rs = "0.16.0"
libc = "0.2.121"
model = { package = "below-model", version = "0.6.0", path = "model" }
once_cell = "1.12"
plain = "0.2"
procfs = { package = "fb_procfs", version = "0.6.0", path = "procfs" }
regex = "1.5.4"
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
signal-hook = "0.3"
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
slog-term = "2.8"
store = { package = "below-store", version = "0.6.0", path = "store" }
tar = "0.4.38"
tempdir = "0.3"
users = "0.11"
view = { package = "below-view", version = "0.6.0", path = "view" }

[dev-dependencies]
maplit = "1.0"
portpicker = "0.1.1"

[build-dependencies]
libbpf-cargo = "0.10.0"

[features]
enable_backtrace = []