051a523ee6
* Intial work towards wgpu 0.13 * Increase MSRV for egui * Add missing texture formats * Update fermium - Replaces beryllium with our own hand-rolled high-level abstraction layer for SDL2. * Update dependencies Co-authored-by: JMS55 <47158642+JMS55@users.noreply.github.com>
30 lines
602 B
TOML
30 lines
602 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"]
|
|
web = ["wgpu/webgl"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
pixels = { path = "../.." }
|
|
wgpu = "0.13"
|
|
winit = "0.26"
|
|
winit_input_helper = "0.12"
|
|
|
|
[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 = "0.3"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
env_logger = "0.9"
|
|
pollster = "0.2"
|