-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (97 loc) · 3.04 KB
/
Cargo.toml
File metadata and controls
104 lines (97 loc) · 3.04 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
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
[workspace]
members = ["rmpc","rmpc-mpd", "rmpc-shared", "rmpcd"]
resolver = "3"
default-members = ["rmpc"]
[workspace.package]
edition = "2024"
license = "BSD-3-Clause"
homepage = "https://rmpc.mierak.dev"
repository = "https://github.com/mierak/rmpc"
rust-version = "1.88.0"
[workspace.dependencies]
clap = { version = "4.5.56", features = ["derive", "cargo", "string" ] }
strum = { version = "0.27.2", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
log = { version = "0.4.29", features = ["kv"] }
anyhow = "1.0.100"
itertools = "0.14.0"
rand = "0.9.2"
sha2 = "0.10.9"
# dev
rstest = "0.26.1"
test-case = "3.3.1"
# build
clap_complete = "4.5.65"
clap_mangen = "0.2.31"
vergen-gitcl = { version = "9.1.0", features = ["build"] }
dialoguer = { version = "0.12.0", default-features = false }
bon = "3.8.2"
base64 = "0.22.1"
crossterm = { version = "0.29.0", features = ["serde", "osc52"] }
image = "0.25.9"
ratatui = { version = "0.30.0", features = ["all-widgets"] }
flate2 = { version = "1.1.8" }
ron = "0.12.0"
derive_more = { version = "2.1.1", features = ["into_iterator", "into", "as_ref", "display", "deref", "debug"] }
rustix = { version = "1.1.3", features = ["termios", "fs", "stdio", "process"] }
bitflags = { version = "2.10.0", features = ["serde"] }
flexi_logger = "0.31.8"
chrono = { version = "0.4.43", features = ["serde"] }
serde_with = "3.16.1"
either = "1.15.0"
walkdir = "2.5.0"
which = "8.0.0"
url = "2.5.8"
sysinfo = "0.38.0"
color_quant = "1.1.0"
enum-map = "2.7.3"
textwrap = "0.16.2"
crossbeam = "0.8.4"
notify-debouncer-full = "0.7.0"
unicode-width = "=0.2.0"
unicase = "2.9.0"
serde_path_to_error = "0.1.20"
serde_json = "1.0.149"
ansi_colours = "1"
thiserror = "2.0.18"
parking_lot = { version = "0.12.5", features = [] }
unicode-segmentation = "1.12.0"
winnow = "^0.7.14"
mlua = { version = "0.11.6", features = ["lua55", "vendored", "anyhow", "serde", "async", "send"]}
zbus = { version = "5.14.0", features = ["tokio"] }
tokio = { version = "1.49.0", features = ["full", "tracing"] }
tokio-util = "0.7.18"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
console-subscriber = "0.5"
reqwest = { version = "0.13.2", features = ["json", "query"] }
md5 = { version = "0.8.0" }
ctrlc = { version = "3.5.2" }
tracing-appender = "0.2"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = -1 }
single_match = "allow"
type_complexity = "allow"
module_name_repetitions = "allow"
unused_self = "allow"
unnested_or_patterns = "allow"
match_same_arms = "allow"
manual_let_else = "allow"
needless_return = "allow"
zero_sized_map_values = "allow"
too_many_lines = "allow"
match_single_binding = "allow"
struct_field_names = "allow"
redundant_closure_for_method_calls = "allow"
unwrap_used = "deny"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_lossless = "allow"
cast_sign_loss = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
return_self_not_must_use = "allow"
[workspace.lints.rust]
unused_macros = "allow"
deprecated = "allow"
unused_crate_dependencies = "deny"