-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
59 lines (54 loc) · 1.04 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "webgl-water-tutorial"
version = "0.1.0"
authors = ["Chinedu Francis Nwafili <frankie.nwafili@gmail.com>"]
edition = "2018"
build = "build.rs"
[lib]
crate-type = ["cdylib"]
[dependencies]
bincode = "=1.0.1"
blender-armature = "=0.1.7"
blender-mesh = "=0.3.3"
console_error_panic_hook = "=0.1.5"
js-sys = "=0.3.6"
nalgebra = "=0.25.3"
wasm-bindgen = "=0.2.29"
[build-dependencies]
bincode = "=1.0.1"
blender-armature = "=0.1.7"
blender-mesh = "=0.3.3"
landon = "=0.1.2"
[dependencies.web-sys]
version = "=0.3.6"
features = [
'CssStyleDeclaration',
'Document',
'Element',
'Event',
'EventTarget',
'HtmlCanvasElement',
'HtmlElement',
'HtmlImageElement',
'HtmlInputElement',
'InputEvent',
'MouseEvent',
'Node',
'Touch',
'TouchEvent',
'TouchList',
'WebGlBuffer',
'WebGlFramebuffer',
'WebGlProgram',
'WebGlRenderbuffer',
'WebGlRenderingContext',
'WebGlShader',
'WebGlTexture',
'WebGlUniformLocation',
'WebGlVertexArrayObject',
'WheelEvent',
'Window',
'console',
]
[profile.release]
lto = true