-
Notifications
You must be signed in to change notification settings - Fork 147
/
Cargo.toml
38 lines (32 loc) · 1.06 KB
/
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
35
36
37
38
[package]
name = "flamegraph"
version = "0.6.5"
edition = "2021"
rust-version = "1.64"
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"
[[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.18"
clap = { version = "4.0.11", features = ["derive"] }
clap_complete = "4.0.2"
indicatif = "0.17.8"
inferno = { version = "0.11.0", default_features = false, features = ["multithreaded", "nameattr"] }
opener = "0.7.1"
shlex = "1.1.0"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.10"
[target.'cfg(windows)'.dependencies]
blondie = "0.5.2"
[profile.release.build-override]
opt-level = 0