-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (40 loc) · 970 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
[package]
name = "ani-ss"
version = "0.1.0"
authors = ["Nick <[email protected]>"]
edition = "2018"
description = "super sampling for the web"
repository = "https://github.com/pinnouse/ani-ss"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
[dependencies]
console_error_panic_hook = "0.1.6"
log = "0.4.14"
console_log = { version = "0.2.0", features = ["color"] }
itertools = "0.10.0"
js-sys = "0.3.47"
wasm-bindgen = "0.2.70"
[dependencies.web-sys]
version = "0.3.47"
features = [
"console",
'Element',
'CanvasRenderingContext2d',
'HtmlCanvasElement',
'HtmlImageElement',
'HtmlVideoElement',
'Window',
'WebGlActiveInfo',
'WebGlBuffer',
'WebGlFramebuffer',
'WebGlProgram',
'WebGlShader',
'WebGlTexture',
'WebGlUniformLocation',
'WebGlRenderbuffer',
'WebGl2RenderingContext'
]