forked from getsentry/sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (70 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
77 lines (70 loc) · 1.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
authors = ["Armin Ronacher <[email protected]>"]
build = "build.rs"
name = "sentry-cli"
version = "1.35.4"
[dependencies]
anylog = "0.2.1"
app_dirs = "1.2.1"
backtrace = "0.3.9"
brotli2 = "0.3.2"
chardet = "0.2.4"
chrono = { version = "0.4.4", features = ["serde"] }
clap = { version = "2.32.0", default-features = false, features = ["suggestions", "wrap_help"] }
console = "0.6.1"
curl = "0.4.12"
dotenv = "0.13.0"
elementtree = "0.5.0"
encoding = "0.2.33"
failure = "0.1.1"
failure_derive = "0.1.1"
flate2 = { version = "1.0.1", default-features = false, features = ["rust_backend"] }
git2 = { version = "0.7.2", default-features = false }
glob = "0.2.11"
hostname = "0.1.5"
if_chain = "0.1.2"
ignore = "0.4.2"
indicatif = "0.9.0"
itertools = "0.7.8"
java-properties = "1.1.1"
lazy_static = "1.0.2"
libc = "0.2.42"
log = { version = "0.4.3", features = ["std"] }
might-be-minified = "0.2.1"
open = "1.2.1"
parking_lot = "0.6.2"
plist = "0.3.0"
prettytable-rs = "0.7.0"
rayon = "1.0.2"
regex = "1.0.1"
runas = "0.1.4"
rust-ini = "0.12.2"
sentry = { version = "0.6.1", default-features = false, features = ["with_client_implementation", "with_panic", "with_failure", "with_log", "with_device_info", "with_rust_info"] }
serde = "1.0.70"
serde_derive = "1.0.70"
serde_json = "1.0.24"
sha1 = { version = "0.6.0", features = ["serde"] }
sourcemap = "2.2.1"
symbolic = { version = "5.0.2", features = ["debuginfo", "proguard", "with_serde", "with_serde_debuginfo"] }
url = "1.7.1"
username = "0.2.0"
uuid = { version = "0.6.5", features = ["v4", "serde"] }
walkdir = "2.1.4"
which = "2.0.0"
zip = "0.4.2"
[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.1.0"
osascript = "0.3.0"
unix-daemonize = "0.1.2"
[target."cfg(unix)"]
[target."cfg(unix)".dependencies]
chan = "0.1.21"
chan-signal = "0.3.1"
openssl-probe = "0.1.2"
uname = "0.1.1"