Add GUI crate skeleton with libadwaita placeholder (build deferred until libgtk-4-dev/libadwaita-1-dev installed)

This commit is contained in:
michael
2026-04-26 14:43:04 -07:00
parent e6db10f5a9
commit 9627ca7533
4 changed files with 64 additions and 0 deletions

15
gui/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "ubuntu-fido-gui"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "ubuntu-fido"
path = "src/main.rs"
[dependencies]
gtk = { package = "gtk4", version = "0.8" }
adw = { package = "libadwaita", version = "0.6" }
ubuntu-fido-common = { path = "../common" }
anyhow = { workspace = true }