-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 747 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 747 Bytes
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
[package]
name = "zenith"
version = "1.2.0"
edition = "2021"
authors = ["CPT-Dawn"]
description = "A sleek, animated Wayland status bar"
license = "MIT"
readme = "README.md"
keywords = ["wayland", "statusbar", "hyprland", "gtk4", "niri"]
categories = ["gui"]
[dependencies]
gtk4 = { version = "0.11.1", features = ["v4_12"] }
gtk4-layer-shell = "0.8.0"
glib = "0.22.3"
gdk4 = "0.11.1"
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.1.0"
toml_edit = { version = "0.25.11", features = ["parse", "display"] }
chrono = "0.4.44"
dirs = "6.0.0"
log = "0.4.29"
env_logger = "0.11.10"
anyhow = "1.0.102"
sysinfo = "0.38.4"
serde_json = "1.0.149"
[profile.release]
opt-level = 3
lto = true
strip = true
codegen-units = 1
panic = "abort"