-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
56 lines (54 loc) · 1.15 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
[package]
name = "mathlikeanim-rs"
version = "0.13.27"
edition = "2021"
readme = "README.md"
description = "A Rust library for creating mathematical animations"
license = "MIT"
repository = "https://github.com/MathItYT/mathlikeanim-rs"
exclude = [
"/examples",
"/docs",
"/javascript",
"/target",
"/python",
"*.svg",
"*.mp4",
"*.tex",
"*.log",
"*.aux",
"*.dvi",
"node_modules",
"pkg",
"package-lock.json",
"package.json",
"webpack.config.js",
"app.yaml",
".gcloudignore",
]
keywords = ["animation", "graphics", "easing", "transitions", "WebAssembly"]
categories = ["mathematics", "graphics", "wasm"]
[dependencies]
js-sys = "0.3.76"
wasm-bindgen = "0.2.99"
web-sys = { version="0.3.76", features=[
'CanvasRenderingContext2d',
'Document',
'Element',
'HtmlCanvasElement',
'Window',
'ImageData',
'HtmlImageElement',
'CanvasPattern',
'CanvasGradient',
'HtmlDivElement',
'CanvasWindingRule'
] }
wasm-bindgen-futures = "0.4.49"
contour-isobands = "0.4.3"
usvg = "0.44.0"
lightningcss = "1.0.0-alpha.61"
svg = "0.17.0"
[lib]
name = "index"
crate-type = ["cdylib", "rlib"]