agb/agb-fixnum/Cargo.toml

20 lines
456 B
TOML

[package]
name = "agb_fixnum"
version = "0.14.0"
edition = "2021"
license = "MPL-2.0"
description = "Library for abstracting over fixed precision numbers. Designed for use with the agb library for the Game Boy Advance"
repository = "https://github.com/agbrs/agb"
[dependencies]
agb_macros = { version = "0.14.0", path = "../agb-macros" }
[profile.dev]
opt-level = 3
debug = true
[profile.release]
opt-level = 3
lto = "fat"
debug = true
codegen-units = 1