zenyx-engine/Cargo.toml

50 lines
1.1 KiB
TOML

[package]
name = "zenyx"
version = "0.1.0"
edition = "2024"
authors = ["Caznix (Chance) <Caznix01@gmail.com>"]
description = "A memory safe, opinionated Game Engine/Framework, written in Rust."
keywords = ["engine", "graphics", "game"]
categories = ["game-development", "graphics"]
license = "MIT"
homepage = "https://zenyx-engine.github.io/"
repository = "https://codeberg.org/Caznix/Zenyx"
[workspace]
resolver = "2"
members = ["subcrates/renderer", "subcrates/zlog"]
[workspace.dependencies]
zlog = { path = "subcrates/zlog" }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
split-debuginfo = "off"
[profile.dev]
debug = 0
[profile.mini]
inherits = "release"
opt-level = "z"
debug = false
strip = true
lto = true
codegen-units = 1
incremental = false
panic = "abort"
[dependencies]
glm = "0.2.3"
smol = "2.0.2"
terminator = "0.3.2"
thiserror = "2.0.12"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
vulkano = "0.35.1"
wgpu = { version = "25.0.0", features = ["spirv"] }
winit = { version = "0.30.9", features = ["android-native-activity"] }
zlog.workspace = true