gsa/Cargo.toml

36 lines
900 B
TOML

[package]
name = "gsa"
version = "0.2.1"
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 = {version = "0.24.0", features = ["serde"]}
ascii = "1.1.0"
gilrs = "0.10.2"
winit = "0.28.6"
softbuffer = "0.3.0"
gif = "0.12.0"
clap = {version = "4.3.8", features = ["derive", "cargo"]}
dunce = "1.0.4"
path-slash = "0.2.1"
serde = {version = "1.0.181", features = ["derive"]}
postcard = {version = "1.0.6", features = ["alloc"]}
rayon = "1.7.0"
[profile.release-dani]
inherits = "release"
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"