-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
44 lines (42 loc) · 931 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
[package]
name = "mathlikeanim-rs"
version = "0.14.13"
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]
base64 = "0.22.1"
exmex = "0.20.3"
image = "0.25.5"
typst = "0.13.0"
typst-as-lib = "0.12.0"
typst-svg = "0.13.0"
usvg = { version = "0.44.0", features = ["text"] }
wasm-bindgen = "0.2.100"
[lib]
name = "index"
crate-type = ["cdylib", "rlib"]