chocobar-x11/Cargo.toml
Candifloss c878c7f678 Make the time widget work
- Show real time, not dummy text
- Update time every minute
- Use slint's Timer
2025-11-20 12:28:26 +05:30

20 lines
576 B
TOML

[package]
name = "chocobar"
description = "An experiment to create a topbar for X11 using Rust and Slint"
version = "0.1.0"
edition = "2024"
authors = ["candifloss <candifloss.cc>"]
readme = "README.md"
[dependencies]
chrono = "0.4.42"
dirs = "6.0.0"
i-slint-backend-winit = { version = "1.14.1", features = ["x11"] }
serde = { version = "1.0.228", features = ["derive"] }
slint = { version = "1.14.1", features = ["backend-winit"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "time"] }
toml = "0.9.8"
[build-dependencies]
slint-build = "1.14.1"