-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
45 lines (41 loc) · 1.2 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
# SPDX-FileCopyrightText: 2022 Harish Rajagopal <[email protected]>
#
# SPDX-License-Identifier: CC0-1.0
[package]
name = "regreet"
version = "0.1.3"
authors = ["Harish Rajagopal <[email protected]>"]
edition = "2021"
rust-version = "1.75"
description = "Clean and customizable greeter for greetd"
repository = "https://github.com/rharish101/ReGreet/"
license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
const_format = { version = "0.2.33", features = ["rust_1_64"] }
educe = "0.6"
file-rotate = "0.7"
glob = "0.3"
greetd_ipc = { version = "0.10", features = ["tokio-codec"] }
gtk4 = "0.9"
humantime-serde = "1.1.1"
jiff = "0.1.14"
lazy_static = "1.5.0"
lru = "0.12"
pwd = "1.4.0"
regex = "1.10"
relm4 = "0.9"
serde = { version = "1.0", features = ["derive"] }
shlex = "1.3"
thiserror = "2.0"
tokio = { version = "1.39", features = ["net", "time"] }
toml = "0.8"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["local-time"] }
tracker = "0.2"
[features]
gtk4_8 = ["gtk4/v4_8"]
[dev-dependencies]
test-case = "3.3.1"