MRPGI/mrpgi/Cargo.toml
type-two a30d8a25d3 GUI: enable macroquad audio feature (cues and music were silently disabled)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-26 10:30:38 +10:00

15 lines
453 B
TOML

[package]
name = "mrpgi"
version = "0.1.0"
edition = "2021"
description = "Monster Robot Party Game Interpreter — macroquad GUI front-end (play + paint) over mrpgi-core."
[dependencies]
mrpgi-core = { path = "../mrpgi-core" }
macroquad = { version = "0.4", features = ["audio"] }
# Browser builds bake a game folder into the binary (no filesystem on the web).
[target.'cfg(target_arch = "wasm32")'.dependencies]
include_dir = "0.7"
serde_json = "1"