-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (54 loc) · 1.03 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 = "ferricyanide"
version = "0.1.0"
authors = ["Jonathan Fine <finej@purdue.edu>"]
edition = "2018"
license = "MIT/Apache-2"
repository = "https://github.com/frodofine/ferricyanide"
description = "Molecular viewer targeting WebAssembly"
[lib]
crate-type = ["cdylib"]
[dependencies]
js-sys = "0.3.35"
wasm-bindgen = "0.2.58"
console_error_panic_hook = "0.1.6"
[dependencies.web-sys]
version = "0.3.35"
features = [
'CssStyleDeclaration',
'Document',
'Element',
'Event',
'EventTarget',
'HtmlCanvasElement',
'HtmlElement',
'HtmlImageElement',
'HtmlInputElement',
'InputEvent',
'MouseEvent',
'Node',
'Touch',
'TouchEvent',
'TouchList',
'KeyboardEvent',
'WebGlBuffer',
'WebGlFramebuffer',
'WebGlProgram',
'WebGlRenderbuffer',
'WebGl2RenderingContext',
'WebGlShader',
'WebGlUniformLocation',
'WebGlVertexArrayObject',
'WheelEvent',
'Window',
'console',
]
[dependencies.webgl-matrix]
version = "0.1.0"
features = [
'Matrix3',
'Matrix4',
]
[profile.release]
opt-level = 's'
lto = true