-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (60 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
76 lines (60 loc) · 1.35 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
[package]
name = "hypercube-utils"
version = "0.1.4"
edition = "2024"
authors = ["binarypie"]
description = "TUI utilities for Hypercube Linux"
license = "Apache-2.0"
[lib]
name = "hypercube_utils"
path = "src/lib.rs"
[[bin]]
name = "hypercube-greeter"
path = "src/bin/greeter.rs"
[[bin]]
name = "hypercube-onboard"
path = "src/bin/onboard.rs"
[dependencies]
# TUI Framework
ratatui = { version = "0.29", default-features = false, features = [
"crossterm",
] }
crossterm = { version = "0.28", features = ["event-stream"] }
# Async Runtime
tokio = { version = "1", features = [
"full",
"sync",
"macros",
"rt-multi-thread",
] }
futures = "0.3"
# greetd IPC
greetd_ipc = { version = "0.10", features = ["sync-codec"] }
# Configuration
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
# Desktop File Parsing
rust-ini = "0.21"
# Security
zeroize = { version = "1.8", features = ["derive"] }
# Error Handling
thiserror = "2.0"
# CLI Arguments
clap = { version = "4", features = ["derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
chrono = "0.4"
dirs = "5.0"
hostname = "0.4"
shell-words = "1.1"
shell-escape = "0.1"
nix = { version = "0.29", features = ["user", "term"] }
[dev-dependencies]
tempfile = "3"
[profile.release]
lto = true
strip = true
panic = "abort"
codegen-units = 1