Files
netrunner-landing/matrix-engine/Cargo.toml
T
2026-04-24 05:09:26 +07:00

21 lines
388 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"] }