From 4e1b5d7b05a7a61b5fb76400ac78106bb4d37ddf Mon Sep 17 00:00:00 2001 From: Johann150 Date: Thu, 9 Feb 2023 23:38:09 +0100 Subject: [PATCH] add cargo files --- .gitignore | 5 +++++ Cargo.toml | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index 3ca43ae..193d30e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,8 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + + +# Added by cargo + +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1bdaa39 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "sudoku_constraint_solver" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies]