diff options
author | Joris | 2020-01-28 09:55:58 +0100 |
---|---|---|
committer | Joris | 2020-01-29 10:12:31 +0100 |
commit | 1b6a7e0d00703e3da2e1620b5a2b2cba027161de (patch) | |
tree | 5143f784e1529d3b6c04116c84f09c426bb257b0 /Cargo.toml | |
parent | 197b6fa7aa810147d63209408c3a378ec552d0f4 (diff) |
Implement game of life
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..aa18d6f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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.58" +js-sys = "0.3.35" +console_error_panic_hook = "0.1.6" + +[dependencies.web-sys] +version = "0.3.35" +features = [ + 'CanvasRenderingContext2d', + 'Document', + 'Element', + 'HtmlCanvasElement', + 'Window', + 'console', +] |