e8d5cf3ebc
* feat(wgpu): upgrade wgpu from 13 to 14 * Address feedback * Bump tao in `minimal-tao` example * Bump fltk in `minimal-fltk` example * Bump egui in `minimal-egui` example * Bump MSRV to `1.65` * Bump crates in `imgui-winit` example * Delete `minimal-sdl2` example * Fix clippy lints * Update examples/minimal-egui/src/gui.rs Co-authored-by: Zageron <hello@zageron.ca> Co-authored-by: Jay Oster <jay@kodewerx.org>
28 lines
614 B
TOML
28 lines
614 B
TOML
[package]
|
|
name = "minimal-web"
|
|
version = "0.1.0"
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
pixels = { path = "../.." }
|
|
winit = "0.27"
|
|
winit_input_helper = "0.13"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook = "0.1"
|
|
console_log = "0.2"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = { version = "0.3", features = ["GpuTextureFormat"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
env_logger = "0.9"
|
|
pollster = "0.2"
|