Init Cargo workspace with three crates: pixstrip-core, pixstrip-gtk, pixstrip-cli

This commit is contained in:
2026-03-06 01:28:24 +02:00
commit 2a5e0e7289
8 changed files with 946 additions and 0 deletions

10
pixstrip-gtk/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "pixstrip-gtk"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
pixstrip-core = { workspace = true }
gtk = { package = "gtk4", version = "0.11.0", features = ["gnome_49"] }
adw = { package = "libadwaita", version = "0.9.1", features = ["v1_8"] }