gsa/Cargo.toml

31 lines
649 B
TOML

[package]
name = "gsa"
version = "0.1.0"
edition = "2021"
description = "Game development library modelled after an imaginary console"
license = "0BSD"
documentation = "https://docs.rs/gsa/latest/"
repository = "https://git.danitheskunk.com/DaniTheSkunk/gsa"
categories = ["game-engines"]
keywords = ["gamedev"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glam = "0.24.0"
ascii = "1.1.0"
gilrs = "0.10.2"
winit = "0.28.6"
softbuffer = "0.3.0"
gif = "0.12.0"
[profile.release-dani]
inherits = "release"
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"