From 2114492af323674ccaab7d1d9efd14ae1f03f95d Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Sat, 29 Apr 2023 14:10:59 +0300 Subject: [PATCH] feat: gitignore and cargo.toml with 2d array dep --- .gitignore | 14 ++++++++++++++ Cargo.toml | 9 +++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6985cf1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..bcc6afc --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "oxidised4" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +array2d = "0.3.0"