-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 1.22 KB
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
39
40
41
42
[package]
name = "flamegraph"
version = "0.6.12"
edition = "2021"
rust-version = "1.86"
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.23"
clap = { version = "4.0.11", features = ["derive"] }
clap_complete = "4.0.2"
indicatif = "0.18.0"
inferno = { version = "0.12.2", default-features = false, features = ["multithreaded", "nameattr"] }
opener = "0.8.1"
shlex = "1.1.0"
rustc-demangle = { version = "0.1", features = ["std"] }
[target.'cfg(unix)'.dependencies]
signal-hook = "0.4.1"
[target.'cfg(windows)'.dependencies]
blondie = "0.5.2"
[target.'cfg(target_os = "macos")'.dependencies]
quick-xml = { version = "0.39", default-features = false }
[profile.release.build-override]
opt-level = 0