30 lines
458 B
TOML
30 lines
458 B
TOML
[package]
|
|
name = "game"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
js-sys = "0.3.51"
|
|
wasm-bindgen = "0.2.74"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = [
|
|
'CanvasRenderingContext2d',
|
|
'Document',
|
|
'Element',
|
|
'Event',
|
|
'KeyboardEvent',
|
|
'HtmlCanvasElement',
|
|
'HtmlImageElement',
|
|
'Window',
|
|
'Performance',
|
|
'Gamepad',
|
|
'GamepadEvent',
|
|
'GamepadButton',
|
|
]
|