gsa/Cargo.toml

32 lines
671 B
TOML
Raw Normal View History

[package]
name = "gsa"
version = "0.1.0"
edition = "2021"
2023-07-23 00:36:53 +02:00
description = "Game development library modelled after an imaginary console"
2023-07-23 00:47:03 +02:00
license = "0BSD"
2023-07-23 00:56:52 +02:00
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]
lazy_static = "1.4.0"
glam = "0.24.0"
ascii = "1.1.0"
gilrs = "0.10.2"
2023-07-21 10:31:52 +02:00
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"