-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
48 lines (43 loc) · 1.09 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 = "rbperf"
description = "Sampling profiler and tracer for Ruby (CRuby) which runs in BPF"
version = "0.4.0"
repository = "https://github.com/javierhonduco/rbperf"
authors = ["Javier Honduvilla Coto <[email protected]>"]
keywords = ["bpf", "ebpf", "ruby", "CRuby", "profiler", "tracer"]
license = "MIT"
edition = "2021"
[profile.release]
lto = true
[dependencies]
goblin = "0.6.1"
anyhow = {version= "1.0.75", features = ["backtrace"]}
proc-maps = "0.3.1"
serde = {version = "1.0.183", features = ["derive"] }
clap = {version = "4.3.23", features = ["derive"]}
serde_json = "1.0.105"
chrono = "0.4.26"
inferno = "0.11.15"
libbpf-rs = {version = "0.20.1", features=["static"]}
perf-event-open-sys = "4.0.0"
errno = "0.3.2"
libc = "0.2.147"
log = "0.4.20"
env_logger = "0.10.0"
serde_yaml = "0.9"
thiserror = "1.0.47"
nix = "0.26.2"
syscalls = { version = "0.6", default-features = false }
ctrlc = "3.4.0"
num_cpus = "1.16.0"
[dev-dependencies]
project-root = "0.2.2"
rand = "0.8.5"
[build-dependencies]
bindgen = "0.65.1"
libbpf-cargo = "0.20.1"
[workspace]
members = [
".",
"xtask",
]