1
0
rust-wasm-snake/Cargo.toml

21 lines
411 B
TOML
Raw Permalink Normal View History

2022-06-02 10:44:01 +00:00
[package]
name = "rust-wasm-snake"
version = "0.1.0"
edition = "2021"
2022-06-02 22:14:32 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
2022-06-02 10:44:01 +00:00
[dependencies]
2022-06-02 20:50:44 +00:00
rand = "0.8.5"
2022-06-02 22:14:32 +00:00
wasm-bindgen = "0.2.80"
js-sys = "0.3.57"
getrandom = { version = "0.2.6", features = ["js"] }
[dependencies.web-sys]
version = "0.3.57"
features = [
"Window", "console", "Document", "HtmlElement", "Element",
"CssStyleDeclaration", "HtmlDivElement", "KeyboardEvent"
]