-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (54 loc) · 1.06 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
[package]
name = "crabmancake"
version = "0.1.0"
authors = ["Trenton Andres <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[features]
localhost = []
[dependencies]
console_log = "0.1"
console_error_panic_hook = "0.1"
git-version = "0.3"
image = {version = "0.23.12", default-features=false, features = ["jpeg", "png"]}
js-sys = "0.3"
log = "0.4"
nalgebra = "0.18.0"
futures = "0.3"
thiserror = "1.0.20"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4.18"
wasm-streams = "0.1"
lazy_static = "1.3.0"
gltf = {version = "0.15", features = ["names"]}
[dependencies.web-sys]
version = "0.3"
features = [
'CanvasRenderingContext2d',
'Document',
'Element',
'Event',
'EventTarget',
'Headers',
'HtmlElement',
'HtmlCanvasElement',
'HtmlInputElement',
'KeyboardEvent',
'InputEvent',
'Location',
'MouseEvent',
'Node',
'ReadableStream',
'Request',
'RequestInit',
'RequestMode',
'Response',
'Window',
'WebGlBuffer',
'WebGlProgram',
'WebGlRenderingContext',
'WebGlUniformLocation',
'WebGlShader',
'WebGlTexture',
]