forked from gz/rust-perfcnt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 966 Bytes
/
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
[package]
name = "perfcnt"
version = "0.8.1"
authors = ["Gerd Zellweger <[email protected]>", "Brian Martin <[email protected]>", "Jens Breitbart <[email protected]>", "Marshall Pierce <[email protected]>"]
description = "Library to configure and read hardware performance counters in rust."
homepage = "https://github.com/gz/rust-perfcnt"
repository = "https://github.com/gz/rust-perfcnt"
documentation = "http://gz.github.io/rust-perfcnt/perfcnt/"
readme = "README.md"
keywords = ["performance", "counter", "events", "pmu", "perf"]
license = "MIT"
edition = '2018'
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies.x86]
version = "0.49.0"
features = ["performance-counter"]
[dependencies]
bitflags = "1.2.1"
libc = "0.2"
mmap = "0.1.*"
nom = "4.2.3"
[[bin]]
name = "perfcnt-list"
path = "src/bin/list.rs"
[[bin]]
name = "perfcnt-parse"
path = "src/bin/parse.rs"
[[bin]]
name = "perfcnt-stats"
path = "src/bin/stats.rs"