mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
* feat: add packages for libadwaita version * feat: package builds attempt * fix: add cargo feature * fix: workflow matrix * fix: add missing images * fix: condition target * fix: depends * feat: actually add the adwaita feature * use multiple recipes * add headless recipe * fix: add conflicts to package manifests * fix: only build the required crate in makefile * fix: actually build headless in the headless recipe * fix: add missing headless dependencies
24 lines
617 B
TOML
24 lines
617 B
TOML
[package]
|
|
name = "lact-gui"
|
|
version = "0.5.1"
|
|
authors = ["Ilya Zlobintsev <ilya.zl@protonmail.com>"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["gtk-tests"]
|
|
gtk-tests = []
|
|
|
|
[dependencies]
|
|
lact-client = { path = "../lact-client" }
|
|
lact-daemon = { path = "../lact-daemon", default-features = false }
|
|
gtk = { version = "0.7", package = "gtk4", features = ["v4_6", "blueprint"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1.0"
|
|
adw = { package = "libadwaita", version = "0.5.3", features = [
|
|
"v1_4",
|
|
], optional = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.0"
|