2022-10-03 04:20:44 +00:00
|
|
|
[package]
|
2024-02-25 03:26:28 +00:00
|
|
|
name = "moa-pixels"
|
2022-10-03 04:20:44 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
2024-03-17 18:58:02 +00:00
|
|
|
pixels = "0.13"
|
2023-05-13 22:14:11 +00:00
|
|
|
winit = "0.28"
|
2024-02-25 03:16:46 +00:00
|
|
|
femtos = "0.1"
|
2022-10-03 04:20:44 +00:00
|
|
|
|
2024-02-25 03:26:28 +00:00
|
|
|
moa-core = { path = "../../core" }
|
|
|
|
moa-common = { path = "../common", features = ["audio"] }
|
2024-03-02 05:17:09 +00:00
|
|
|
moa-host = { path = "../../libraries/host" }
|
2022-10-11 17:28:59 +00:00
|
|
|
|
2024-02-25 03:26:28 +00:00
|
|
|
moa-systems-genesis = { path = "../../systems/genesis" }
|
2022-10-03 04:20:44 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
console_error_panic_hook = "0.1"
|
2023-05-13 22:14:11 +00:00
|
|
|
console_log = "1.0"
|
2024-03-03 07:48:19 +00:00
|
|
|
wasm-bindgen = "0.2"
|
2022-10-03 04:20:44 +00:00
|
|
|
wasm-bindgen-futures = "0.4"
|
|
|
|
web-sys = "0.3"
|
2024-03-17 18:58:02 +00:00
|
|
|
wgpu = { version = "0.16", features = ["webgl"] }
|
2023-05-13 22:14:11 +00:00
|
|
|
instant = { version = "0.1", features = [ "wasm-bindgen" ] }
|
2022-10-03 04:20:44 +00:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2024-03-17 18:58:02 +00:00
|
|
|
env_logger = "0.11"
|
|
|
|
pollster = "0.3"
|
2022-10-03 04:20:44 +00:00
|
|
|
instant = "0.1"
|
|
|
|
|