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"