48 lines
950 B
TOML
48 lines
950 B
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 = ["engine","subcrates/zen_core"]
|
|
|
|
|
|
|
|
[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]
|
|
crossbeam = "0.8.4"
|
|
humantime = "2.2.0"
|
|
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"
|
|
winit = "0.30.9"
|
|
|
|
|