forked from getsentry/sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
92 lines (83 loc) · 2.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
authors = ["Armin Ronacher <[email protected]>"]
build = "build.rs"
name = "sentry-cli"
version = "2.0.4"
edition = "2018"
[dependencies]
anylog = "0.6.1"
anyhow = { version = "1.0.56", features = ["backtrace"] }
backoff = "0.4.0"
backtrace = "0.3.64"
brotli2 = "0.3.2"
chardet = "0.2.4"
chrono = { version = "0.4.19", features = ["serde"] }
clap = { version = "3.1.6", default-features = false, features = ["std", "suggestions", "wrap_help"] }
console = "0.15.0"
curl = { version = "0.4.43", features = ["static-curl", "static-ssl"] }
dirs = "4.0.0"
dotenv = "0.15.0"
elementtree = "0.7.0"
encoding = "0.2.33"
flate2 = { version = "1.0.22", default-features = false, features = ["rust_backend"] }
git2 = { version = "0.14.2", default-features = false }
glob = "0.3.0"
if_chain = "1.0.2"
ignore = "0.4.18"
# Do not update due to https://github.com/console-rs/indicatif/issues/317 and https://github.com/getsentry/sentry-cli/pull/1055
indicatif = "0.14.0"
itertools = "0.10.3"
java-properties = "1.4.1"
lazy_static = "1.4.0"
libc = "0.2.121"
log = { version = "0.4.16", features = ["std"] }
might-be-minified = "0.3.0"
open = "2.1.1"
parking_lot = "0.12.0"
percent-encoding = "2.1.0"
plist = "1.3.1"
prettytable-rs = "0.8.0"
proguard = { version = "4.1.1", features = ["uuid"] }
r2d2 = "0.8.9"
rayon = "1.5.1"
regex = "1.5.5"
runas = "0.2.1"
rust-ini = "0.18.0"
semver = "1.0.7"
sentry = { version = "0.25.0", default-features = false, features = ["anyhow", "curl"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
sha1_smol = { version = "1.0.0", features = ["serde"] }
sourcemap = { version = "6.0.1", features = ["ram_bundle"] }
symbolic = { version = "8.7.0", features = ["debuginfo-serde"] }
thiserror = "1.0.30"
url = "2.2.2"
username = "0.2.0"
uuid = { version = "0.8.2", features = ["v4", "serde"] }
walkdir = "2.3.2"
which = "4.2.5"
zip = "0.6.2"
[dev-dependencies]
insta = { version = "1.14.0", features = ["redactions"] }
mockito = "0.31.0"
predicates = "2.1.1"
tempfile = "3.3.0"
trycmd = "0.13.3"
[features]
default = []
managed = []
with_crash_reporting = []
[target]
[target."cfg(target_os = \"macos\")"]
[target."cfg(target_os = \"macos\")".dependencies]
mac-process-info = "0.2.0"
osascript = "0.3.0"
unix-daemonize = "0.1.2"
[target."cfg(unix)"]
[target."cfg(unix)".dependencies]
openssl-probe = "0.1.5"
signal-hook = "0.3.13"
crossbeam-channel = "0.5.4"
[profile.release]
opt-level = 3
panic = "abort"