-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
118 lines (107 loc) · 3.22 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "readymade"
version = "0.3.4"
edition = "2021"
license = "MIT WITH GPL-3.0-or-later"
description = "Install ready-made distribution images"
repository = "https://github.com/FyraLabs/readymade"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
color-eyre = "0.6.3"
gtk = { version = "0.9", package = "gtk4", features = ["v4_10"] }
relm4 = { version = "0.9", features = ["macros"] }
libhelium = { version = "0.10.0", features = ["gtk_v4_10", "v1_6"] }
# udisks2 = "0.1.0"
cmd_lib = "1.9.4"
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-appender = "0.2"
itertools = "0.13.0"
thiserror = "1.0.63"
gettext-rs = { version = "0.7.0", features = ["gettext-system"] }
# karen = ">=0.1.2"
gnome-desktop = "0.4.2"
# chrono-tz = "0.9.0"
paste = "1.0.15"
tempfile = "3.10.1"
lsblk = "0.4.0"
# serde_ini = "0.2.0"
# serde-enum-str = "0.4.0"
const_format = "0.2.32"
sys-mount = "3.0.1"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
bytesize = { version = "1.3.0", features = ["serde"] }
serde_with = "3.9.0"
uuid = { version = "1.10.0", features = ["serde"] }
# validator = "0.18.1"
# lazy_static = "1.5.0"
tiffin = { version = "0.3.2" }
open = "5"
tracing-journald = "0.3.0"
rayon = "1.10.0"
process_alive = "0.1.1"
crossbeam-queue = "0.3.11"
strip-ansi-escapes = "0.2.0"
toml = "0.8.19"
serde_valid = { version = "0.24.0", features = ["toml"] }
os_pipe = "1.2.1"
tee_readwrite = "0.2.0"
nix = { version = "0.29.0", features = ["mount"] }
backhand = "0.18.0"
glob = "0.3.1"
enum_dispatch = "0.3.13"
scopeguard = "1.2.0"
tracing-test = "0.2.5"
serde-systemd-unit = { path = "./serde-systemd-unit" }
[dependencies.os-detect]
git = "https://github.com/FyraLabs/distinst"
branch = "master"
[build-dependencies]
glib-build-tools = "0.17.10"
[lints.clippy]
cargo = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }
disallowed-macros = "deny"
excessive-nesting = "warn"
arithmetic_side_effects = "warn"
assertions_on_result_states = "warn"
clone_on_ref_ptr = "warn"
create_dir = "warn"
empty_enum_variants_with_brackets = "warn"
empty_structs_with_brackets = "warn"
field_scoped_visibility_modifiers = "deny"
format_push_string = "warn"
get_unwrap = "warn"
if_then_some_else_none = "warn"
impl_trait_in_params = "warn"
indexing_slicing = "warn"
infinite_loop = "deny"
let_underscore_must_use = "deny"
let_underscore_untyped = "warn"
multiple_inherent_impl = "warn"
needless_raw_strings = "warn"
rc_buffer = "warn"
rc_mutex = "deny"
redundant_type_annotations = "warn"
ref_patterns = "warn"
renamed_function_params = "warn"
rest_pat_in_fully_bound_structs = "warn"
semicolon_outside_block = "warn"
str_to_string = "warn"
string_lit_chars_any = "warn"
string_to_string = "warn"
tests_outside_test_module = "warn"
todo = "warn"
try_err = "warn"
undocumented_unsafe_blocks = "deny"
unimplemented = "warn"
unneeded_field_pattern = "warn"
unwrap_in_result = "warn"
equatable_if_let = "allow"
[workspace]
members = ["serde-systemd-unit"]