-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 1.07 KB
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
[package]
name = "linux-perf-data"
version = "0.12.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Markus Stange <mstange.moz@gmail.com>"]
categories = ["development-tools::profiling", "parser-implementations"]
description = "A parser for the perf.data format and the jitdump format. These formats are used by the Linux perf tool."
keywords = ["linux", "perf", "parser"]
readme = "README.md"
documentation = "https://docs.rs/linux-perf-data/"
repository = "https://github.com/mstange/linux-perf-data/"
exclude = ["/.github", "/.vscode", "/tests"]
[dependencies]
byteorder = "1.4.3"
memchr = "2.4.1"
thiserror = "2"
linux-perf-event-reader = "0.10.0"
# linux-perf-event-reader = { path = "../linux-perf-event-reader" }
linear-map = "1.2.0"
prost = { version = "0.14", default-features = false, features = ["std"] }
prost-derive = "0.14"
[dev-dependencies]
yaxpeax-arch = { version = "0.3", default-features = false }
yaxpeax-x86 = { version = "2", default-features = false, features = ["std", "fmt"] }
yaxpeax-arm = { version = "0.3", default-features = false, features = ["std"] }