-
Notifications
You must be signed in to change notification settings - Fork 146
/
Cargo.toml
32 lines (27 loc) · 963 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
[package]
name = "flamegraph"
version = "0.5.1"
description = "A simple cargo subcommand for generating flamegraphs, using inferno under the hood"
license = "MIT OR Apache-2.0"
repository = "https://github.com/flamegraph-rs/flamegraph"
keywords = ["perf", "flamegraph", "profiling", "cargo", "cargo-subcommand"]
categories = ["command-line-utilities", "development-tools::profiling", "visualization", "development-tools::cargo-plugins"]
readme = "README.md"
edition = "2018"
[[bin]]
name = "cargo-flamegraph"
path = "src/bin/cargo-flamegraph.rs"
[[bin]]
name = "flamegraph"
path = "src/bin/flamegraph.rs"
[dependencies]
anyhow = "1.0.43"
cargo_metadata = "0.14.0"
clap = { version = "3.0", features = ["derive"] }
clap_complete = "3.0"
inferno = { version = "0.10.8", default_features = false, features = ["multithreaded", "nameattr"] }
opener = "0.5.0"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.10"
[profile.release.build-override]
opt-level = 0