-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (39 loc) · 1.26 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
[package]
name = "binge"
version = "0.5.0"
edition = "2024"
[dependencies]
brotli-decompressor = "5.0.3"
anyhow = "1.0.97"
astral-tokio-tar = "0.6.1"
async-compression = { version = "0.4.42", default-features = false, features = ["tokio", "xz", "zstd", "gzip"] }
async_zip = { version = "0.0.18", default-features = false, features = ["tokio", "deflate"] }
clap = { version = "4.5.34", features = ["derive"] }
clap_complete = "4.5.47"
futures-lite = "2.6.0"
owo-colors = "4.2.0"
regex = "1.11.1"
reqwest = { version = "0.13", default-features = false, features = ["brotli", "http2", "json", "rustls", "stream", "zstd"] }
serde = { version = "1.0.219", features = ["derive"] }
strides = { version = "1.0.0-rc.4" }
tokio = { version = "1.44.1", features = ["rt-multi-thread", "macros", "signal", "sync"] }
tokio-stream = "0.1.18"
tokio-util = { version = "0.7.18", features = ["io"] }
toml = "1"
xdg = "3.0.0"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_sign_loss = "deny"
enum_glob_use = "deny"
if_not_else = "deny"
items_after_statements = "deny"
missing_errors_doc = "allow"
mut_mut = "deny"
panic = "deny"
similar_names = "deny"
unicode_not_nfc = "deny"
unwrap_used = "deny"
used_underscore_binding = "deny"