-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
50 lines (45 loc) · 1.33 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
# SPDX-FileCopyrightText: 2024 Ryan Cao <hello@ryanccn.dev>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[package]
name = "nyoom"
version = "0.10.0"
edition = "2021"
description = "Small CLI Firefox userchrome manager"
authors = ["Ryan Cao <hello@ryanccn.dev>"]
publish = false
[dependencies]
anstream = "0.6.18"
async-recursion = "1.1.1"
bzip2 = "0.5.0"
clap = { version = "4.5.23", features = ["derive"] }
clap_complete = "4.5.40"
color-eyre = "0.6.3"
crossterm = "0.28.1"
enum_dispatch = "0.3.13"
etcetera = "0.8.0"
eyre = "0.6.12"
flate2 = "1.0.35"
humansize = "2.1.3"
owo-colors = "4.1.0"
regex = "1.11.1"
reqwest = { version = "0.12.11", features = ["rustls-tls", "stream", "brotli", "zstd", "gzip"], default-features = false }
rust-embed = "8.5.0"
serde = { version = "1.0.217", features = ["derive"] }
sysinfo = { version = "0.33.1", features = ["system"], default-features = false }
tar = "0.4.43"
temp-dir = "0.1.14"
tokio = { version = "1.42.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["full"] }
toml = "0.8.19"
xz2 = "0.1.7"
zip = "2.2.2"
zstd = "0.13.2"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
redundant_closure_for_method_calls = "allow"
[lints.rust]
unsafe_code = "forbid"