37 lines
695 B
TOML
37 lines
695 B
TOML
[package]
|
|
name = "pmp"
|
|
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 <dk@cl.team>"]
|
|
license-file = "LICENSE"
|
|
|
|
[dependencies]
|
|
pmp-emitter = { path = "crates/pmp-emitter" }
|
|
|
|
clap = { version = "^4", features = ["derive"] }
|
|
owo-colors = { version = "^4", features = ["supports-colors"] }
|
|
|
|
rayon = "^1"
|
|
|
|
once_cell = "^1"
|
|
|
|
mago-syntax = "^1.13"
|
|
mago-interner = "^1.0.0-alpha"
|
|
mago-source = "^1.0.0-alpha"
|
|
mago-span = "^1.13"
|
|
mago-names = "^1.13"
|
|
mago-project = "^0.26"
|
|
mago-semantics = "^1.13"
|
|
|
|
regex = "^1"
|
|
walkdir = "^2"
|