-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
44 lines (35 loc) · 1.01 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
[package]
name = "foxear"
version = "0.1.1"
edition = "2021"
license = "MPL-2.0"
authors = ["LI Rui <[email protected]>"]
readme = "README.md"
description = "Fox Ear is a Linux process behavior trace tool powered by eBPF."
repository = "https://github.com/KernelErr/foxear"
keywords = ["ebpf", "tracing", "debug", "linux"]
categories = ["development-tools"]
include = ["/src", "/probes", "build.rs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# eBPF related
bcc = "0.0.32"
libc = "0.2"
# Analyse related
# Storage related
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
sled = "0.34"
chrono = "0.4"
nanoid = "0.4"
# Config related
config = { version = "0.11", features = ["toml"] }
# Visualization related
petgraph = "0.6.0"
cli-table = { version = "0.4", features = ["csv"] }
# Cli related
clap = { version = "3.0.0", features = ["cargo"] }
anyhow = "1.0"
futures = "0.3"
tokio = { version = "1.15.0", features = ["full"] }
lockfree = "0.5"