blob: 557615074498b3203901dd59903fe9fdf0651c23 (
plain)
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
|
[package]
name = "game_of_life"
version = "0.1.0"
authors = ["Joris"]
edition = "2018"
description = ''
repository = ''
license = 'LICENSE'
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2.70"
js-sys = "0.3.47"
console_error_panic_hook = "0.1.6"
[dependencies.web-sys]
version = "0.3.47"
features = [
'CanvasRenderingContext2d',
'Document',
'Element',
'HtmlCanvasElement',
'Window',
'console',
]
|