synvael/crates/client/Cargo.toml
Serkyo 9e56bccb05 feat(client): implement main event loop and tracing initialization
Added winit event loop with ControlFlow::Poll for continuous rendering, and initialized tracing-subscriber for standardized logging. Also integrated anyhow for robust error handling in the client binary.
2026-04-30 01:02:42 +02:00

11 lines
163 B
TOML

[package]
name = "client"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
winit = "0.30.13"