forked from getsentry/sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
91 lines (82 loc) · 2.43 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
[package]
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
build = "build.rs"
name = "sentry-cli"
version = "1.68.0"
edition = "2018"
[dependencies]
anylog = "0.6.1"
app_dirs = "1.2.1"
backoff = "0.3.0"
backtrace = "0.3.49"
brotli2 = "0.3.2"
chardet = "0.2.4"
chrono = { version = "0.4.11", features = ["serde"] }
clap = { version = "2.33.1", default-features = false, features = ["suggestions", "wrap_help"] }
console = "0.14.1"
curl = { version = "0.4.38", features = ["static-curl", "static-ssl"] }
dirs = "3.0.2"
dotenv = "0.15.0"
elementtree = "0.5.0"
encoding = "0.2.33"
failure = { version = "0.1.8", features = ["derive"] }
flate2 = { version = "1.0.16", default-features = false, features = ["rust_backend"] }
git2 = { version = "0.13.6", default-features = false }
glob = "0.3.0"
if_chain = "1.0.0"
ignore = "0.4.16"
indicatif = "0.16.2"
itertools = "0.10.0"
java-properties = "1.2.0"
lazy_static = "1.4.0"
libc = "0.2.71"
log = { version = "0.4.8", features = ["std"] }
might-be-minified = "0.3.0"
open = "1.4.0"
parking_lot = "0.11.1"
percent-encoding = "2.1.0"
plist = "1.1.0"
prettytable-rs = "0.8.0"
proguard = { version = "4.1.1", features = ["uuid"] }
r2d2 = "0.8.8"
rayon = "1.3.1"
regex = "1.3.9"
runas = "0.2.1"
rust-ini = "0.17.0"
semver = "1.0.3"
sentry = { version = "0.18.0", default-features = false, features = ["with_client_implementation", "with_curl_transport", "with_panic", "with_failure", "with_log", "with_device_info", "with_rust_info", "with_debug_to_log"] }
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.56"
sha1 = { version = "0.6.0", features = ["serde"] }
sourcemap = { version = "5.0.0", features = ["ram_bundle"] }
symbolic = { version = "8.1.0", features = ["debuginfo-serde"] }
url = "2.1.1"
username = "0.2.0"
uuid = { version = "0.8.1", features = ["v4", "serde"] }
walkdir = "2.3.1"
which = "4.1.0"
zip = "0.5.6"
[dev-dependencies]
assert_cmd = "1.0.1"
insta = { version = "1.7.1", features = ["redactions"] }
mockito = "0.30.0"
predicates = "2.0.0"
tempfile = "3.1.0"
[features]
default = ["with_crash_reporting"]
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.4"
signal-hook = "0.3.9"
crossbeam-channel = "0.5.1"
[profile.release]
opt-level = 3
panic = "abort"