blob: a599aef944f029ced0f05e926402d478645e7393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "sigma-trace"
version = "0.0.1-b"
edition = "2021"
authors = ["Santo Cariotti <santo@dcariotti.me>"]
repository = "https://github.com/boozec/sigma"
description = "Monitor Linux executables with an interface easier than strace(1)"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
byteorder = "1.5.0"
chrono = "0.4.31"
clap = { version = "4.4.6", features = ["derive"] }
crossterm = "0.27.0"
fork = "0.1.22"
nix = { version = "0.27.1", features = ["ptrace"] }
owo-colors = "3.5.0"
ratatui = "0.23.0"
|