-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 724 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
[package]
name = "perf-event-data"
version = "0.1.8"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Sean Lynch <sean@lynches.ca>"]
repository = "https://github.com/Phantomical/perf-event-data.git"
description = "Types and traits for parsing records emitted by perf_event_open"
readme = "README.md"
keywords = ["linux", "perf"]
categories = [
"development-tools::profiling",
"hardware-support",
"os::linux-apis",
]
exclude = ["/.github", "/.vscode"]
[dependencies]
bitflags = "2.0"
perf-event-open-sys2 = "5.0.3"
c-enum = "0.2.0"
# Used internally, for fuzzing support
arbitrary = { version = "1", optional = true, features = ["derive"] }
[workspace]
members = [".", "fuzz"]
[profile.release]
debug = 2