-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (39 loc) · 1.12 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
[package]
name = "hstrace"
version = "0.0.5"
authors = ["Mika Vatanen <[email protected]>"]
repository = "https://github.com/blaind/hstrace"
documentation = "https://docs.rs/hstrace"
description = "Syscall tracing from command line and as a library"
license = "Apache-2.0/MIT"
edition = "2018"
exclude = ["/.travis.yml", ".gitignore"]
categories = ["command-line-interface", "development-tools::debugging"]
keywords = ["strace", "syscall", "tracing", "linux"]
readme = "README.md"
[dependencies]
hstrace_derive = { path = "hstrace_derive", version = "0.0.1" }
# logging
log = "0.4.14"
env_logger = "0.8.3"
# FromPrimitive
num-traits = "0.2.14"
num-derive = "0.3.3"
# Coloring of messages
colored = "2.0.0"
# Arguments for main
clap = { version = "2.33.3", features = ["yaml"] }
# Improved channels
crossbeam-channel = "0.5.1"
# Others
nix = "0.17.0" # see https://github.com/nix-rust/nix/pull/1422
bitflags = "1.2.1"
crossbeam-utils = "0.8.3"
ctrlc = "3.1.8"
lazy_static = "1.4.0"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
[build-dependencies]
bindgen = "0.58.1"
[dev-dependencies]
serial_test = "0.5.1"