forked from Foxicution/wgpu-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 813 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (22 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "plinth-core"
version = "0.1.2"
edition = "2024"
repository = "https://github.com/gusjengis/Plinth-Core"
description = "The core library for Plinth. Handles the creation of a winit window with a wgpu rendering context. Defines an inteferface for external apps to execute their code during certain events (Resizing, User Input, Rendering, Initialization, etc.)."
license = "MIT OR Apache-2.0"
[features]
default = []
webgl = ["wgpu/webgl"]
[dependencies]
winit = { version = "0.30.12" }
env_logger = {version = "0.11.5"}
log = { version = "0.4.22"}
wgpu = { version = "26.0.1"}
pollster = {version ="0.4.0"}
wasm-logger = "0.2.0"
wasm-bindgen = "0.2.100"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
console_log = "1.0"
wasm-bindgen-futures = "0.4.49"