wxbox/crates/client/Cargo.toml

24 lines
517 B
TOML
Raw Normal View History

2025-03-06 22:47:37 -05:00
[package]
name = "wxbox-client"
version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.3"
2025-03-09 18:38:09 -04:00
eframe = { version = "0.31", features = ["persistence"] }
2025-03-07 23:34:29 -05:00
glow = "*"
2025-03-06 22:47:37 -05:00
egui_glow = "0.31"
2025-03-07 23:34:29 -05:00
egui = "0.31"
2025-03-07 11:31:46 -05:00
poll-promise = "0.3"
ehttp = "0.5"
image = "0.25"
2025-03-08 13:29:30 -05:00
bytemuck = "1.22"
2025-03-08 15:30:13 -05:00
nalgebra-glm = "0.19"
2025-03-09 18:38:09 -04:00
serde = { version = "1", features = ["derive"] }
2025-03-06 22:47:37 -05:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
tracing-web = "0.1"
wasm-bindgen-futures = "0.4"
web-sys = "0.3"
console_error_panic_hook = "0.1"