-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (55 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
61 lines (55 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "blazecli"
description = "A command line utility for the blazesym library."
version = "0.1.14"
edition.workspace = true
rust-version.workspace = true
default-run = "blazecli"
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
categories = [
"api-bindings",
"command-line-utilities",
"development-tools::debugging",
"os::unix-apis",
"value-formatting",
]
keywords = [
"breakpad",
"cli",
"dwarf",
"elf",
"gsym",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "shell-complete"
path = "var/shell-complete.rs"
required-features = ["clap_complete"]
[build-dependencies]
anyhow = "1.0"
grev = "0.1.4"
[dependencies]
anyhow = "1.0"
bufio = "0.2"
blazesym = {version = "0.2.3", path = "../", features = [
"apk",
"breakpad",
"demangle",
"dwarf",
"gsym",
"tracing",
"xz",
"zlib",
"zstd",
]}
clap = {version = "4.6", features = ["derive"]}
clap_complete = {version = "4.6", optional = true}
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["ansi", "env-filter", "fmt"]}
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
blazesym = {version = "0.2", path = "../", features = ["bpf"]}
[lints]
workspace = true