15 lines
453 B
TOML
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"
|