-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (50 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
52 lines (50 loc) · 1.2 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
[package]
name = "racky"
version = "0.1.0"
description = "A simple tool to manage your home server(s) with ease"
license = "Apache-2.0"
authors = ["Dervex"]
edition = "2024"
[lib]
name = "racky"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.101"
axum = { version = "0.8.8", features = ["multipart"] }
bytes = "1.11.1"
clap = { version = "4.5.58", features = ["derive"] }
clap-verbosity-flag = "3.0.4"
config-derive = { version = "*", path = "crates/config-derive" }
colored = "3.1.1"
command-group = "5.0.1"
dialoguer = "0.12.0"
directories = "6.0.0"
documented = "0.9.2"
env_logger = "0.11.9"
globenv = "0.2.1"
jiff = "0.2.20"
lazy_static = "1.5.0"
log = "0.4.29"
optfield = "0.4.0"
path-clean = "1.0.1"
regex = "1.12.3"
reqwest = { version = "0.13.2", default-features = false, features = [
"blocking",
"form",
"multipart",
"rustls",
"query",
] }
self_update = { version = "0.42.0", default-features = false, features = [
"archive-zip",
"compression-zip-deflate",
"rustls",
"zip",
] }
serde = { version = "1.0.228", features = ["derive"] }
strip-ansi-escapes = "0.2.1"
tokio = { version = "1.49.0", features = ["full"] }
toml = "1.0.1"
walkdir = "2.5"
zip = "7.4.0"
sysinfo = "0.38.1"