Added logging Improved control flow Stopped blocking the goddamn runtime with my background code Got rid of a potential double free
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "ckgreeter"
|
|
version = "0.1.0"
|
|
build = "build.rs"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
slint = { git = "https://github.com/slint-ui/slint", branch = "master", default-features = false, features = [
|
|
"std",
|
|
"compat-1-2",
|
|
"renderer-femtovg",
|
|
"backend-linuxkms",
|
|
"backend-winit-wayland",
|
|
] }
|
|
anyhow = "1.0.102"
|
|
greetd_ipc = { version = "0.10.3", features = [
|
|
"codec",
|
|
"async-trait",
|
|
"tokio-codec",
|
|
] }
|
|
i-slint-core = { git = "https://github.com/slint-ui/slint", branch = "master" }
|
|
toml = { version = "1.1.2", features = ["serde"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde-aux = "4.7.0"
|
|
zbus = { version = "5.15.0", features = ["blocking"] }
|
|
tokio = { version = "1.52.2", features = ["macros", "rt-multi-thread", "net", "fs", "full"] }
|
|
tokio-stream = {version = "0.1.18", features = ["fs"]}
|
|
greetd-stub = "0.3.0"
|
|
chrono = "0.4.44"
|
|
|
|
pretty_env_logger = "0.5.0"
|
|
log = {version = "0.4.32", features = ["kv"]}
|
|
|
|
pexels-api = { git = "https://github.com/houseme/pexels", rev = "b0b692a" }
|
|
reqwest = { version = "0.13.3", features = ["json", "default-tls"] }
|
|
|
|
magick_rust = "2.0.0"
|
|
rand = "0.9.4"
|
|
|
|
[build-dependencies]
|
|
slint-build = { git = "https://github.com/slint-ui/slint", branch = "master" }
|