Initialize project structure with basic CLI setup

This commit is contained in:
2026-03-02 20:13:38 +01:00
parent e464dae53d
commit e8cf10eee3
6 changed files with 62 additions and 0 deletions

12
Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "pmp"
description = """\
PHP Macro Pre-processor (PMP) \
A php lexer, parser and macro pre-processor written in Rust. \
"""
version = "0.1.0-alpha"
edition = "2024"
[dependencies]
clap = { version = "^4", features = ["derive"] }