-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
51 lines (46 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
[package]
name = "lurk-cli"
version = "0.3.9"
description = "lurk is a pretty (simple) alternative to strace."
authors = ["Jakob Waibel <salet@posteo.net>", "Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JakWai01/lurk"
edition = "2021"
[[bin]]
name = "lurk"
path = "src/main.rs"
[features]
default = []
# Includes the syscall tables for all architectures.
all = [
# "arm", "mips", "mips64", "powerpc", "powerpc64", "s390x",
# "sparc", "sparc64", "x86",
"x86_64", "riscv64", "aarch64"
]
# Enable syscall tables for individual architectures.
aarch64 = []
#arm = []
#mips = []
#mips64 = []
#powerpc = []
#powerpc64 = []
#s390x = []
#sparc = []
#sparc64 = []
#x86 = []
x86_64 = []
riscv64 = []
[dependencies]
anyhow = "1"
byteorder = "1"
clap = { version = "4", features = ["derive"] }
comfy-table = "7"
console = "0.15.8"
libc = "0.2"
linux-personality = "2"
nix = { version = "0.29", features = ["ptrace", "signal"] }
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
syscalls = { version = "0.6.14", features = ["full"] }
uzers = "0.12"