diff options
author | eug-vs <eugene@eug-vs.xyz> | 2023-01-20 23:52:38 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2023-01-20 23:52:38 +0300 |
commit | 3284607b0461e4bd4386b324f8bdf63835ed22c9 (patch) | |
tree | 64964060a3fd731bdbebb5a2abc1f31b7507241d | |
parent | 203abeafb94b977236bd6a9a2d0f33173f6f0d1b (diff) | |
download | chessnost-3284607b0461e4bd4386b324f8bdf63835ed22c9.tar.gz |
chore: add project files
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Cargo.lock | 7 | ||||
-rw-r--r-- | Cargo.toml | 8 |
3 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..bd0fce2 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "chessnost" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..369c5be --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "chessnost" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] |