22 lines
423 B
TOML
22 lines
423 B
TOML
[package]
|
|
name = "matrix-engine"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3"
|
|
web-sys = { version = "0.3", features = [
|
|
"CanvasRenderingContext2d",
|
|
"HtmlCanvasElement",
|
|
"Window",
|
|
"Performance",
|
|
"Document",
|
|
"Element"
|
|
] }
|
|
rand = "0.8"
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
console_error_panic_hook = "0.1.7" |