Scaffold cargo workspace with core and gtk crates

This commit is contained in:
2026-03-01 23:54:45 +02:00
parent 2b984c3f5d
commit 2ca1f87bf3
13 changed files with 46 additions and 0 deletions

11
outlay-gtk/Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "outlay-gtk"
version.workspace = true
edition.workspace = true
[dependencies]
outlay-core = { path = "../outlay-core" }
gtk = { package = "gtk4", version = "0.11" }
adw = { package = "libadwaita", version = "0.9", features = ["v1_8"] }
plotters = { version = "0.3", default-features = false, features = ["bitmap_backend", "bitmap_encoder", "line_series", "area_series"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }