[package]
edition = "2021"
name = "linux-perf-data"
version = "0.13.0"
authors = ["Markus Stange <mstange.moz@gmail.com>"]
build = false
exclude = [
"/.github",
"/.vscode",
"/tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser for the perf.data format and the jitdump format. These formats are used by the Linux perf tool."
documentation = "https://docs.rs/linux-perf-data/"
readme = "README.md"
keywords = [
"linux",
"perf",
"parser",
]
categories = [
"development-tools::profiling",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mstange/linux-perf-data/"
[features]
default = ["zstd"]
zstd = ["zstd-safe"]
[lib]
name = "linux_perf_data"
path = "src/lib.rs"
[[example]]
name = "jitdumpdump"
path = "examples/jitdumpdump.rs"
[[example]]
name = "perfdatainfo"
path = "examples/perfdatainfo.rs"
[[example]]
name = "perfpipeinfo"
path = "examples/perfpipeinfo.rs"
[dependencies.byteorder]
version = "1.4.3"
[dependencies.linear-map]
version = "1.2.0"
[dependencies.linux-perf-event-reader]
version = "0.10.0"
[dependencies.memchr]
version = "2.4.1"
[dependencies.prost]
version = "0.14"
features = ["std"]
default-features = false
[dependencies.prost-derive]
version = "0.14"
[dependencies.thiserror]
version = "2"
[dependencies.zstd-safe]
version = "7.2"
optional = true
[dev-dependencies.yaxpeax-arch]
version = "0.3"
default-features = false
[dev-dependencies.yaxpeax-arm]
version = "0.3"
features = ["std"]
default-features = false
[dev-dependencies.yaxpeax-x86]
version = "2"
features = [
"std",
"fmt",
]
default-features = false