-
Notifications
You must be signed in to change notification settings - Fork 249
/
Cargo.toml
193 lines (184 loc) · 5.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
[workspace.package]
version = "0.467.0"
authors = ["Qlty Software Inc."]
description = "Code quality toolkit"
documentation = "https://docs.qlty.sh"
homepage = "https://qlty.sh"
repository = "https://github.com/qltysh/qlty"
keywords = ["linter", "quality", "static-analysis", "testing", "code-coverage"]
categories = ["development-tools", "development-tools::testing"]
license-file = "LICENSE.md"
edition = "2021"
include = ["/*.md"]
[workspace]
resolver = "2"
members = ["qlty*"]
[workspace.dependencies]
actix-web = "4.9.0"
anyhow = { version = "1.0.95", features = ["backtrace"] }
ar = "0.9.0"
assert-json-diff = "2.0.2"
base64 = "0.22.1"
bencher = "0.1.5"
bytesize = "1.3.0"
cap = "0.1.2"
cc = "1.2.1"
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive", "wrap_help"] }
clap_complete = "4.5.34"
cli-table = "0.4.9"
config = "0.13.3"
console = "0.15.10"
dialoguer = "0.11.0"
diffy = "0.4.0"
duct = { git = "https://github.com/brynary/duct.rs.git" }
exec = "0.3.1"
flate2 = "1.0.19"
fork = "0.2.0"
fs_extra = "=1.3.0"
fslock = "0.2.1"
git2 = { version = "0.19.0", features = [
"vendored-libgit2",
"vendored-openssl",
] }
glob = "0.3.2"
globset = "0.4.15"
http = "1.2.0"
ignore = "0.4.22"
indicatif = "0.17.8"
indoc = "2.0.5"
insta = { version = "1.42.0", features = ["yaml", "redactions"] }
itertools = "0.13.0"
keyring = { version = "3.6.1", features = [
"apple-native",
"windows-native",
"linux-native",
] }
lazy_static = "1.5.0"
log = "0.4.22"
lzma-rs = "0.3.0"
mac_address = "1.1.7"
md5 = "0.7.0"
num-format = "0.4.4"
num_cpus = "1.15.0"
once_cell = "1.20.2"
path-absolutize = "3.1.1"
pathdiff = "0.2.3"
pbjson = "0.7.0"
pbjson-types = "0.7.0"
prost = "0.13.4"
qlty-analysis = { version = "0.467.0", path = "qlty-analysis" }
qlty-check = { version = "0.467.0", path = "qlty-check" }
qlty-cloud = { version = "0.467.0", path = "qlty-cloud" }
qlty-config = { version = "0.467.0", path = "qlty-config" }
qlty-coverage = { version = "0.467.0", path = "qlty-coverage" }
qlty-plugins = { version = "0.467.0", path = "qlty-plugins" }
qlty-smells = { version = "0.467.0", path = "qlty-smells" }
qlty-test-utilities = { version = "0.467.0", path = "qlty-test-utilities" }
qlty-types = { version = "0.467.0", path = "qlty-types" }
rand = "0.8.5"
rayon = "1.10.0"
regex = "1.11.0"
rust-embed = { version = "8.5.0", features = ["include-exclude"] }
semver = "1.0.24"
sentry = { version = "0.34.0", default-features = false, features = [
"backtrace",
"contexts",
"panic",
"debug-images",
"ureq",
] }
sentry-backtrace = "0.34.0"
serde = { version = "1.0.217", features = ["derive", "rc"] }
serde_json = { version = "1.0.134", features = ["preserve_order"] }
serde-querystring = "0.2.1"
serde_with = "3.12.0"
serde_yaml = "0.9.34"
serde-xml-rs = "0.6.0"
sha2 = "0.10.6"
shell-escape = "0.1.5"
similar = { version = "2.6.0", features = ["inline"] }
supports-color = "3.0.1"
syntect = "5.2.0"
sysinfo = "0.31.4"
tabwriter = { version = "1.4.0", features = ["ansi_formatting"] }
tar = "0.4.43"
tempfile = "3.15.0"
termbg = "0.6.0"
thiserror = "2.0.9"
time = { version = "0.3.37", features = [
"serde-well-known",
"formatting",
"parsing",
] }
tiny_http = "0.12.0"
toml = "0.8.2"
toml_edit = "0.22.21"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-test = "0.2.5"
tree-sitter = "0.22.6"
tree-sitter-go = "0.21.2"
tree-sitter-java = "0.21.0"
tree-sitter-javascript = "0.21.4"
tree-sitter-kotlin = "0.3.8"
tree-sitter-php = "0.22.8"
tree-sitter-python = "0.21.0"
tree-sitter-ruby = "0.21.0"
tree-sitter-rust = "0.21.2"
tree-sitter-typescript = "0.21.2"
trycmd = "0.15.8"
ureq = { version = "2.12.1", features = ["json"] }
url = "2.5.4"
uuid = { version = "1.11.0", features = ["v4"] }
walkdir = "2.5.0"
webbrowser = "1.0.3"
whoami = "1.5.2"
zip = "2.2.2"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.19.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "homebrew"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Publish jobs to run in CI
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = true
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
[workspace.metadata.dist.github-custom-runners]
aarch64-apple-darwin = "macos-15"
aarch64-unknown-linux-gnu = "ubuntu-2204-32-cores-arm64"
x86_64-apple-darwin = "macos-15"
x86_64-pc-windows-msvc = "windows-latest"
x86_64-unknown-linux-gnu = "ubuntu-22.04"
x86_64-unknown-linux-musl = "ubuntu-22.04"
[workspace.metadata.release]
publish = false
shared-version = true
sign-commit = true
sign-tag = true
tag-name = "v{{version}}"
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"