-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (39 loc) · 808 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
[package]
name = "cubic_curve"
version = "0.1.0"
authors = ["fine-geometer"]
edition = "2018"
description = "Draw the unique cubic curve through nine points."
license = "MIT OR Apache-2.0"
repository = "https://github.com/finegeometer/cubic-curve"
readme = "./README.md"
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
nalgebra = "0.18"
console_error_panic_hook = "0.1.6"
[dependencies.web-sys]
version = "0.3"
features = [
'console',
'CssStyleDeclaration',
'Document',
'Element',
'Event',
'EventTarget',
'HtmlElement',
'HtmlCanvasElement',
'HtmlImageElement',
'MouseEvent',
'Node',
'KeyboardEvent',
'WebGl2RenderingContext',
'WebGlBuffer',
'WebGlProgram',
'WebGlShader',
'WebGlUniformLocation',
'WebGlVertexArrayObject',
'Window',
]