forked from nico-abram/blondie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (51 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "blondie"
description = "Collect CPU callstack samples from a windows process"
version = "0.5.2"
edition = "2021"
license = "MIT OR Apache-2.0 OR BSL-1.0 OR MPL-2.0 OR Zlib OR Unlicense"
homepage = "https://github.com/nico-abram/blondie/"
repository = "https://github.com/nico-abram/blondie/"
documentation = "https://docs.rs/blondie"
readme = "README.md"
keywords = ["windows", "profiling", "sampling", "callstack", "perf"]
categories = [
"command-line-utilities",
"development-tools::profiling",
"development-tools"
]
include = ["/src", "LICENSE"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[dependencies]
windows = { version = "0.44.0", features = [
"Win32_System_Diagnostics_Etw",
"Win32_Foundation",
"Win32_System_Time",
"Win32_System_Threading",
"Win32_Security",
"Win32_System_SystemServices",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Win32_System_WindowsProgramming",
"Win32_Storage_FileSystem",
"Win32_System_SystemInformation"
] }
rustc-hash = "1.1.0"
# Only for the binary crate
inferno = { version = "0.11", optional = true }
clap = { version = "4.0.26", optional = true, features = ["derive"] }
# For symbol resolution
pdb-addr2line = "0.10"
symsrv = "0.2"
# Needed for symsrv
tokio = { version = "1.17.0", features = ["fs", "rt"] }
# To extract pdb paths from image files
object = "0.30"
[profile.release]
debug = true
[[bin]]
name = "blondie"
required-features = ["inferno", "clap"]
[[bin]]
name = "blondie_dtrace"