-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 776 Bytes
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
[package]
name = "dial9-perf-self-profile"
version = "0.4.2"
edition.workspace = true
repository.workspace = true
description = "Minimal self-profiling via Linux perf_event_open with frame-pointer-based stack traces"
license = "MIT OR Apache-2.0"
[package.metadata.docs.rs]
rustc-args = ["-C", "force-frame-pointers=yes"]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
[features]
__internal-bench = []
[dependencies]
dial9-trace-format = { workspace = true }
tracing = "0.1.44"
[target.'cfg(target_os = "linux")'.dependencies]
blazesym = "0.2"
crossbeam-utils = "0.8"
libc = "0.2"
perf-event-data = "0.1.8"
perf-event-open-sys2 = "5.0.6"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "unwind"
harness = false
required-features = ["__internal-bench"]