From c399b89632d0a9298439903d2c51743d92f048ce Mon Sep 17 00:00:00 2001 From: Overlord Date: Tue, 3 Mar 2026 20:09:41 +0100 Subject: [PATCH] Configure workspace and update dependencies --- Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c816dc1..e34de3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,20 @@ description = "PHP Macro Pre-processor (PMP) written in Rust." version = "0.1.0-alpha" edition = "2024" +[workspace] +members = ["crates/*"] +resolver = "2" + +[workspace.package] +edition = "2024" +authors = ["Dean J. Karstedt "] +license-file = "LICENSE" + [dependencies] +pmp-emitter = { version = "1.0.0", path = "crates/pmp-emitter" } + clap = { version = "^4", features = ["derive"] } +owo-colors = { version = "^4", features = ["supports-colors"] } rayon = "^1"