From 1b6a7e0d00703e3da2e1620b5a2b2cba027161de Mon Sep 17 00:00:00 2001 From: Joris Date: Tue, 28 Jan 2020 09:55:58 +0100 Subject: Implement game of life --- Cargo.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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', +] -- cgit v1.2.3