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.
11 lines
163 B
TOML
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"
|