From 2ff1449558449541cff4c451b00a19ed4669365e Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 1 Oct 2022 16:13:43 -0400 Subject: [PATCH] modified stock cargo.toml, added gitignore --- .gitignore | 2 ++ Cargo.toml | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4fffb2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +/Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d78ece0 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "rustwasmhello" +version = "0.1.0" +edition = "2021" + +[lib] +crate-type = ["cdylib"] +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies]