Files
LACT/lact-gui/Cargo.toml
Ilya Zlobintsev 999418ad67 feat: add alternative headless and libadwaita builds (#227)
* 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
2023-12-09 21:12:53 +02:00

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"