31 lines
637 B
TOML
31 lines
637 B
TOML
[package]
|
|
name = "web_runner"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[build]
|
|
target = "wasm32-unknown-unknown"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
error-iter = "0.4"
|
|
log = "0.4"
|
|
pixels = "0.13.0"
|
|
player = { path = "../player" }
|
|
viperid = { path = "../.." }
|
|
|
|
winit = "0.28"
|
|
winit_input_helper = "0.14"
|
|
console_error_panic_hook = "0.1"
|
|
console_log = "1"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = { version = "0.3", features = ["GpuTextureFormat"] }
|
|
anyhow = "1.0.82"
|
|
|