agb/examples/the-dungeon-puzzlers-lament/Cargo.toml
2024-06-18 17:49:56 +01:00

27 lines
639 B
TOML

[package]
name = "the-dungeon-puzzlers-lament"
version = "0.1.0"
authors = [""]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
agb = { version = "0.20.5", path = "../../agb" }
agb_tracker = { version = "0.20.5", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
slotmap = { version = "1", default-features = false }
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
[build-dependencies]
tiled = { version = "0.11", default-features = false }
quote = "1"
proc-macro2 = "1"