tuigreet/Cargo.toml

50 lines
1.1 KiB
TOML
Raw Normal View History

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"
2024-05-06 10:15:14 +03:00
authors = ["Antoine POPINEAU <antoine@popineau.eu>"]
2020-06-27 12:40:40 +03:00
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]
chrono = { version = "^0.4", features = ["unstable-locales"] }
2023-10-14 21:34:09 +03:00
crossterm = { version = "^0.27", features = ["event-stream"] }
futures = "0.3"
getopts = "^0.2"
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",
] }
i18n-embed-fl = "^0.8"
lazy_static = "^1.4"
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"
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"
zeroize = "^1.3"
uzers = "0.12"
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