-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
72 lines (55 loc) · 1.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "lemurs"
authors = ["Gijs Burghoorn <[email protected]>"]
description = "A TUI Display/Login Manager"
version = "0.3.2"
edition = "2021"
categories = ["gui", "authentication"]
keywords = ["display", "login", "desktop"]
repository = "https://github.com/coastalwhite/lemurs"
homepage = "https://github.com/coastalwhite/lemurs"
readme = "README.md"
license = "MIT or APACHE"
include = [
"/src",
"/assets",
"/README.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/extra"
]
rust-version = "1.70.0"
[dependencies]
# UI and TUI interface
ratatui = "0.21.0"
crossterm = "0.26"
unicode-width = "0.1"
mio = { version = "0.8.8", features = [ "os-poll", "os-ext" ] }
deentry = "0.0.1"
# Interacting with the kernel interfaces
rand = "0.8.4"
nix = "0.23.1"
# UTMPX
libc = "0.2"
# Authentication and Fetching User Data
pam = "0.7.0"
uzers = "0.11"
# Once Cell
once_cell = "1.17.1"
# Logging
env_logger = { version = "0.9.0", default-features = false, features = ["humantime"] }
log = "0.4.0"
# Configuration File Parsing
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
# Config for 'cargo dist'
[workspace.metadata.dist]
cargo-dist-version = "0.2.0"
ci = ["github"]
installers = []
targets = ["x86_64-unknown-linux-gnu"]
include = ["extra"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"