23 lines
515 B
TOML
23 lines
515 B
TOML
[package]
|
|
name = "udon"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A kanban-lockscreen"
|
|
|
|
[dependencies]
|
|
# Logs and error reporting
|
|
log = "0.4.20"
|
|
log4rs = "1.2.0"
|
|
color-eyre = "0.6.2"
|
|
|
|
# Surface drawing
|
|
cairo = "0.0.4"
|
|
|
|
# the version here must match the one used by wayland-client
|
|
calloop = "0.10.0"
|
|
calloop-wayland-source = "0.1.0"
|
|
tempfile = "3.7.0"
|
|
wayland-client = { version = "0.30.2" }
|
|
# staging needed for ext session lock
|
|
wayland-protocols = { version = "0.30.1", features = ["staging", "client"] }
|