-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
56 lines (52 loc) · 1.21 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
[package]
name = "tuigreet"
version = "0.9.1"
authors = ["Antoine POPINEAU <[email protected]>"]
edition = "2018"
build = "build.rs"
[features]
default = []
nsswrapper = []
[dependencies]
ansi-to-tui = "5.0.0-rc.1"
chrono = { version = "^0.4", features = ["unstable-locales"] }
crossterm = { version = "^0.27", features = ["event-stream"] }
futures = "0.3"
getopts = "^0.2"
greetd_ipc = { version = "^0.10", features = ["tokio-codec"] }
i18n-embed = { version = "^0.14", features = [
"desktop-requester",
"fluent-system",
] }
i18n-embed-fl = "^0.8"
lazy_static = "^1.4"
nix = { version = "^0.28", features = ["feature"] }
tui = { package = "ratatui", version = "^0.27", default-features = false, features = [
"crossterm",
"unstable"
] }
rust-embed = "^8.0"
rust-ini = "^0.21"
smart-default = "^0.7"
tokio = { version = "^1.2", default-features = false, features = [
"macros",
"rt-multi-thread",
"net",
"sync",
"time",
"process",
] }
unic-langid = "^0.9"
zeroize = "^1.3"
uzers = "0.12"
rand = "0.8.5"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
utmp-rs = "0.3.0"
[profile.release]
lto = true
[dev-dependencies]
greetd-stub = "0.3.0"
tempfile = "3.10.1"
unicode-width = "0.1.12"