-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 818 Bytes
/
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
[package]
name = "rta"
version = "0.8.1"
edition = "2021"
rust-version = "1.75"
[dependencies]
big_s = "1.0.2"
colored = "2.1.0"
const_format = "0.2.32"
dirs = "5.0.1"
flate2 = "1.0.30"
human-sort = "0.2.2"
minreq = { version = "2.11.2", features = ["https"] }
regex = "1.10.4"
semver = "1.0.23"
serde_json = "1.0.117"
tar = "0.4.40"
tempfile = "3.10.1"
which = "5.0.0"
xz2 = "0.1.7"
zip = "0.6.6"
[dev-dependencies]
pretty = { package = "pretty_assertions", version = "1.4.0" }
# 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"