-
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathCargo.toml
More file actions
148 lines (132 loc) · 3.95 KB
/
Cargo.toml
File metadata and controls
148 lines (132 loc) · 3.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[package]
build = "build.rs"
name = "sentry-cli"
version = "3.3.5"
edition = "2021"
rust-version = "1.91"
[workspace]
[dependencies]
anylog = "0.6.3"
anyhow = { version = "1.0.69", features = ["backtrace"] }
bytecount = "0.6.3"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.1.6", default-features = false, features = [
"derive",
"std",
"suggestions",
"wrap_help",
"string",
"help",
"usage",
"error-context",
] }
clap_complete = "4.4.3"
console = "0.15.5"
curl = "0.4.46"
dirs = "4.0.0"
dotenvy = "0.15.7"
elementtree = "1.2.3"
flate2 = { version = "1.0.25", default-features = false, features = [
"rust_backend",
] }
git2 = { version = "0.20.4", default-features = false }
glob = "0.3.1"
http = "1.4.0"
if_chain = "1.0.2"
ignore = "0.4.20"
imagesize = "0.14.0"
# 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.5"
java-properties = "2.0.0"
lazy_static = "1.4.0"
libc = "0.2.139"
log = { version = "0.4.17", features = ["std"] }
objectstore-client = { version = "0.1.2" , default-features = false, features = ["native-tls"] }
open = "3.2.0"
parking_lot = "0.12.1"
percent-encoding = "2.2.0"
plist = "1.4.0"
prettytable-rs = "0.10.0"
proguard = { version = "5.0.0", features = ["uuid"] }
r2d2 = "0.8.10"
rayon = "1.6.1"
regex = "1.7.3"
runas = "1.0.0"
rust-ini = "0.18.0"
semver = "1.0.16"
sentry = { version = "0.46.0", default-features = false, features = [
"anyhow",
"curl",
"contexts",
] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
sha1_smol = { version = "1.0.0", features = ["serde", "std"] }
sha2 = "0.10.9"
sourcemap = { version = "9.3.0", features = ["ram_bundle"] }
symbolic = { version = "12.13.3", features = ["debuginfo-serde", "il2cpp"] }
thiserror = "1.0.38"
tokio = { version = "1.47", features = ["rt"] }
url = "2.3.1"
uuid = { version = "1.3.0", features = ["v4", "serde"] }
walkdir = "2.3.2"
which = "4.4.0"
whoami = "1.5.2"
zip = "2.4.2"
data-encoding = "2.3.3"
magic_string = "0.3.4"
chrono-tz = "0.8.4"
secrecy = "0.8.0"
lru = "0.16.3"
backon = { version = "1.5.2", features = ["std", "std-blocking-sleep"] }
[dev-dependencies]
assert_cmd = "2.0.11"
insta = { version = "1.26.0", features = ["redactions", "yaml"] }
mockito = "1.6.1"
rstest = "0.18.2"
serial_test = "3.1.1"
tempfile = "3.8.1"
trycmd = "0.14.11"
[features]
default = []
managed = []
with_crash_reporting = []
[workspace.lints.clippy]
allow-attributes = "warn"
dbg-macro = "warn"
elidable-lifetime-names = "warn"
implicit-clone = "warn"
str-to-string = "warn"
tests-outside-test-module = "warn"
unnecessary-wraps = "warn"
uninlined-format-args = "warn"
unused-trait-names = "warn"
unwrap-used = "warn"
[lints]
workspace = true
[target]
[target."cfg(target_os = \"macos\")"]
[target."cfg(all(target_os = \"macos\", target_arch = \"aarch64\"))".dependencies]
apple-catalog-parsing = { path = "apple-catalog-parsing" }
[target."cfg(target_os = \"macos\")".dependencies]
mac-process-info = "0.2.0"
[target."cfg(unix)"]
[target."cfg(unix)".dependencies]
openssl-probe = "0.1.5"
[target."cfg(windows)"]
[target."cfg(windows)".dependencies]
windows-sys = { version = "0.59.0", features = ["Win32_Storage_FileSystem"] }
# Use static curl/SSL on non-macOS platforms
# We link dynamically on macOS; that way we can support self-signed certificates
# trusted in the macOS keychain.
[target."cfg(not(target_os = \"macos\"))".dependencies]
curl = { version = "0.4.46", features = ["static-curl", "static-ssl"] }
# We optimize the release build for size.
[profile.release]
opt-level = 2 # I obtained the smallest binary size with opt-level 2 on my system.
panic = "abort"
strip = "debuginfo" # Only strip debuginfo (not symbols) to keep backtraces useful.
codegen-units = 1 # Parallel compilation prevents some optimizations.
# We do not enable link-time optimizations (lto) because they cause the
# CLI to timeout when run in Xcode Cloud.