-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
39 lines (34 loc) · 892 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
[package]
name = "strace-analyzer"
version = "0.5.6"
authors = ["Christian Krause <[email protected]>"]
description = "analyze strace output"
license = "GPL-3.0-or-later"
readme = "README.md"
documentation = "https://github.com/wookietreiber/strace-analyzer"
homepage = "https://github.com/wookietreiber/strace-analyzer"
repository = "https://github.com/wookietreiber/strace-analyzer"
keywords = ["strace"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.74"
[dependencies]
anyhow = "1"
bytesize = "1"
is-terminal = "0.4"
lazy_static = "1"
regex = "1"
[dependencies.clap]
version = "4"
features = ["cargo", "deprecated", "wrap_help"]
[dependencies.prettytable-rs]
version = "0.10"
optional = true
default_features = false
[features]
default = ["table"]
table = ["prettytable-rs"]
[dev-dependencies]
assert_cmd = "2"
assert_fs = "1"
predicates = "3"