zenyx-engine-telemetry/Cargo.toml

63 lines
1.4 KiB
TOML
Raw Normal View History

2025-04-11 20:17:24 -04:00
[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"
[lib]
crate-type = ["cdylib"]
2024-12-01 16:02:06 -05:00
[workspace]
resolver = "2"
2025-04-26 11:52:46 -04:00
members = ["subcrates/renderer", "subcrates/telemetry", "subcrates/zlog"]
2024-12-03 01:12:33 -05:00
2025-04-15 20:08:58 +00:00
[workspace.dependencies]
zlog = { path = "subcrates/zlog" }
[profile.release]
2025-03-29 01:31:16 -04:00
lto = true
codegen-units = 1
panic = "abort"
2025-03-29 20:20:40 -04:00
split-debuginfo = "off"
[profile.dev]
debug = 0
2025-04-11 16:07:58 -04:00
[profile.mini]
inherits = "release"
opt-level = "z"
debug = false
strip = true
lto = true
codegen-units = 1
incremental = false
panic = "abort"
2025-04-12 21:03:31 -04:00
[dependencies]
bytemuck = "1.22.0"
cgmath = "0.18.0"
image = "0.25.6"
2025-04-16 01:24:10 +00:00
smol = "2.0.2"
2025-04-15 20:08:58 +00:00
winit = { version = "0.30.9" }
2025-04-12 21:03:31 -04:00
terminator = "0.3.2"
thiserror = "2.0.12"
tobj = "4.0.3"
2025-04-12 21:03:31 -04:00
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
2025-04-16 01:24:10 +00:00
vulkano = "0.35.1"
wgpu = { version = "25.0.0", features = ["spirv"] }
2025-04-15 20:08:58 +00:00
zlog.workspace = true
allocator-api2 = "0.2.21"
2025-04-26 11:52:46 -04:00
serde_json = "1.0.140"
serde = "1.0.219"
[target.aarch64-linux-android.dependencies]
winit = { version = "0.30.9", features = ["android-native-activity"] }