Browse Source

:sparkles: added a more basic project stuff.

Felix Bytow 2 năm trước cách đây
mục cha
commit
72a1b04fd8
5 tập tin đã thay đổi với 39 bổ sung0 xóa
  1. 3 0
      .gitignore
  2. 5 0
      CHANGELOG.md
  3. 5 0
      Cargo.toml
  4. 21 0
      LICENSE
  5. 5 0
      README.md

+ 3 - 0
.gitignore

@@ -8,3 +8,6 @@
 # CLion/IDEA
 *.iml
 .idea/
+
+# local scripts
+*.sh

+ 5 - 0
CHANGELOG.md

@@ -0,0 +1,5 @@
+# Changelog
+
+## Release 0.1.0
+
+- Initial project setup

+ 5 - 0
Cargo.toml

@@ -1,7 +1,12 @@
 [package]
 name = "bevy-snake"
+authors = ["Felix Bytow <drako@drako.guru>"]
+description = "Snake game using the Bevy Engine"
+license = "MIT"
+repository = "https://git.drako.guru/drako/bevy-snake"
 version = "0.1.0"
 edition = "2021"
+publish = ["crates-drako-guru"]
 
 [dependencies]
 bevy = "0.7.0"

+ 21 - 0
LICENSE

@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Felix Bytow
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

+ 5 - 0
README.md

@@ -1 +1,6 @@
 # bevy-snake
+
+[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
+[![Version: 0.1.0](https://img.shields.io/badge/crates.drako.guru-v0.1.0-blue)](https://crates.drako.guru/#/crate?name=bevy-snake&version=0.1.0)
+
+A snake game in Rust using the [Bevy Engine](https://bevyengine.org/).