-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 969 Bytes
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 969 Bytes
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
[package]
name = "rta"
version = "0.32.0"
edition = "2024"
rust-version = "1.91"
[dependencies]
big_s = "1.0.2"
colored = "2.2.0"
const_format = "0.2.35"
dirs = "5.0.1"
dyn-clone = "1.0.20"
flate2 = "1.1.9"
human-sort = "0.2.2"
minreq = { version = "2.14.1", features = ["https"] }
regex = "1.12.3"
semver = "1.0.27"
serde_json = "1.0.149"
tar = "0.4.44"
tempfile = "3.26.0"
urlencoding = "2.1.3"
which = "5.0.0"
xz2 = "0.1.7"
zip = "0.6.6"
[dev-dependencies]
pretty = { package = "pretty_assertions", version = "1.4.1" }
# We allow warnings here, the Makefile denies them.
# This way warnings don't hold up running compiling and running tests,
# and also don't slip past CI.
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_inception = "allow"
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = "z"
panic = "abort"
strip = "symbols"