-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCargo.toml
49 lines (44 loc) · 1.32 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
[package]
name = "blazecli"
description = "A command line utility for the blazesym library."
version = "0.1.8"
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.68"
grev = "0.1.3"
[dependencies]
anyhow = "1.0.68"
# TODO: Enable `zstd` feature once we enabled it for testing in the main
# crate.
blazesym = {version = "=0.2.0-rc.2", path = "../", features = ["apk", "breakpad", "demangle", "dwarf", "gsym", "tracing", "zlib"]}
clap = {version = "4.1.7", features = ["derive"]}
clap_complete = {version = "4.1.1", 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.0-rc.2", path = "../", features = ["bpf"]}