my first crate

This commit is contained in:
Christian Nieves
2024-12-09 20:41:32 -06:00
parent 3f38a6f0fe
commit 2117326f90
6 changed files with 371 additions and 48 deletions

View File

@ -1,20 +1,29 @@
cargo-features = ["codegen-backend"]
[[bin]]
name = "first_app"
[[bin]]
name = "snake"
[package]
name = "glite"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "first_app"
[[bin]]
name = "minesweeper"
[[bin]]
name = "snake"
[features]
debug = []
[dependencies]
bevy = { version = "0.15.0", features = ["dynamic_linking"] }
bevy-inspector-egui = "0.28.0"
colored = "2.1.0"
k = "0.32.0"
rand = "0.8.5"
run = "0.1.0"
# Enable a small amount of optimization in the dev profile.
[profile.dev]