-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (43 loc) · 928 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "wasm_boilerplate"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
console_error_panic_hook = "0.1.7"
js-sys = "0.3.55"
lazy_static = "1.4.0"
wasm-bindgen = "0.2.78"
wasm-bindgen-futures = "0.4.28"
cargo-wgsl = "0.0.10"
nalgebra = "0.30.0"
futures = "0.3.19"
[dependencies.web-sys]
version = "0.3.4"
features = [
'Document',
'Element',
'EventTarget',
'HtmlCanvasElement',
'HtmlButtonElement',
'HtmlImageElement',
'HtmlInputElement',
'Event',
'EventInit',
'EventListener',
'CustomEvent',
'CustomEventInit',
'EventInit',
'MouseEvent',
'PointerEvent',
'WheelEvent',
'WebGlBuffer',
'WebGlProgram',
'WebGlRenderingContext',
'WebGlTexture',
'WebGlShader',
'WebGlUniformLocation',
'Window',
]