2020-06-27 12:40:40 +03:00
|
|
|
[package]
|
2020-06-28 18:18:43 +03:00
|
|
|
name = "tuigreet"
|
2024-01-04 09:48:30 +03:00
|
|
|
version = "0.9.0"
|
2020-06-27 12:40:40 +03:00
|
|
|
authors = ["Antoine POPINEAU <antoine.popineau@appscho.com>"]
|
|
|
|
edition = "2018"
|
2020-07-02 09:24:35 +03:00
|
|
|
build = "build.rs"
|
2020-06-27 12:40:40 +03:00
|
|
|
|
2023-11-11 11:45:24 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
nsswrapper = []
|
|
|
|
|
2020-06-27 12:40:40 +03:00
|
|
|
[dependencies]
|
2022-01-23 01:23:49 +03:00
|
|
|
chrono = { version = "^0.4", features = ["unstable-locales"] }
|
2023-10-14 21:34:09 +03:00
|
|
|
crossterm = { version = "^0.27", features = ["event-stream"] }
|
2022-01-23 01:23:49 +03:00
|
|
|
futures = "0.3"
|
|
|
|
getopts = "^0.2"
|
2024-04-23 22:41:48 +03:00
|
|
|
greetd_ipc = { version = "^0.10", features = ["tokio-codec"] }
|
2023-10-14 21:34:09 +03:00
|
|
|
i18n-embed = { version = "^0.14", features = [
|
|
|
|
"desktop-requester",
|
|
|
|
"fluent-system",
|
|
|
|
] }
|
2024-04-23 22:41:48 +03:00
|
|
|
i18n-embed-fl = "^0.8"
|
2022-01-23 01:23:49 +03:00
|
|
|
lazy_static = "^1.4"
|
2024-04-23 22:41:48 +03:00
|
|
|
nix = { version = "^0.28", features = ["feature"] }
|
|
|
|
tui = { package = "ratatui", version = "^0.26", default-features = false, features = [
|
2023-10-15 11:18:10 +03:00
|
|
|
"crossterm",
|
|
|
|
] }
|
2023-10-14 21:34:09 +03:00
|
|
|
rust-embed = "^8.0"
|
2024-04-23 22:41:48 +03:00
|
|
|
rust-ini = "^0.21"
|
2023-10-14 21:34:09 +03:00
|
|
|
smart-default = "^0.7"
|
|
|
|
textwrap = "^0.16"
|
2023-10-15 11:18:10 +03:00
|
|
|
tokio = { version = "^1.2", default-features = false, features = [
|
2023-10-14 21:34:09 +03:00
|
|
|
"macros",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"net",
|
|
|
|
"sync",
|
|
|
|
"time",
|
|
|
|
"process",
|
|
|
|
] }
|
2021-06-28 17:41:02 +03:00
|
|
|
unic-langid = "^0.9"
|
2022-01-23 01:23:49 +03:00
|
|
|
zeroize = "^1.3"
|
2024-04-23 22:41:48 +03:00
|
|
|
uzers = "0.12"
|
2024-04-24 11:06:16 +03:00
|
|
|
rand = "0.8.5"
|
2024-04-26 12:44:26 +03:00
|
|
|
tracing-appender = "0.2.3"
|
|
|
|
tracing-subscriber = "0.3.18"
|
|
|
|
tracing = "0.1.40"
|
2020-06-28 13:02:56 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|