Files
marzipan/Cargo.toml
T
2025-07-13 02:30:40 -07:00

34 lines
685 B
TOML

[package]
name = "marzipan"
description = "A macro processor for ZZT worlds"
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/cmounce/marzipan"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
codepage-437 = "0.1.0"
mzp-peg-macro = { path = "./mzp_peg_macro", version = "0.1.0" }
insta = "1.39.0"
nom = "8.0.0"
compact_str = "0.9.0"
rustc-hash = "2.1.1"
lexopt = "0.3.1"
[dev-dependencies]
insta = "1.39.0"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[[bin]]
name = "marzipan"
path = "src/main.rs"
[workspace]
members = [".", "mzp_peg_macro"]