-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
78 lines (72 loc) · 2.21 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "dump_syms"
version = "2.3.4"
authors = ["Calixte Denizet <cdenizet@mozilla.com>"]
repository = "https://github.com/mozilla/dump_syms"
homepage = "https://github.com/mozilla/dump_syms"
description = "Dump debug symbols into Breakpad ones"
edition = "2018"
license = "MIT/Apache-2.0"
[[bin]]
name = "dump_syms"
required-features = ["cli"]
[features]
default = ["cli", "http"]
# Feature needed when building the dump_syms executable
cli = ["clap", "simplelog"]
# Feature for allowing retrieval of symbols via HTTP
http = ["reqwest", "futures", "tokio"]
[dependencies]
anyhow = "1.0"
bitflags = "2"
cab = "0.6"
clap = { version = "4", optional = true, features = ["cargo"] }
crossbeam = "0.8"
dirs = "5"
futures = { version = "0.3", optional = true }
goblin = "0.8" # Keep in sync with symbolic-debuginfo
hashbrown = { version = "0.14", features = ["serde"] }
log = "0.4"
lzma-rs = "0.3.0"
num_cpus = "1.13"
once_cell = "1.15"
regex = "1.6"
reqwest = { version = "0.12", optional = true, default-features = false, features = [
"blocking",
"rustls-tls",
] }
serde = "1.0"
serde_json = "1.0"
sha2 = "0.10"
simplelog = { version = "0.12", optional = true, features = ["local-offset"] }
symbolic = { version = "12", features = ["demangle", "cfi"] }
tokio = { version = "1.23", optional = true, features = ["rt-multi-thread"] }
url = "2.2"
uuid = "1"
[dev-dependencies]
reqwest = { version = "0.12", default-features = false, features = [
"blocking",
"rustls-tls",
] }
fxhash = "0.2"
tempfile = "3"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Which actions to run on pull requests
pr-run-mode = "upload"
# Whether to install an updater program
install-updater = false
# Path that installers should place binaries in
install-path = "CARGO_HOME"