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

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[workspace]
members = ["pixstrip-core", "pixstrip-gtk", "pixstrip-cli"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "CC0-1.0"
repository = "https://git.lashman.live/lashman/pixstrip"
[workspace.dependencies]
pixstrip-core = { path = "pixstrip-core" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"