This commit is like Batman, It has no parents.

This commit is contained in:
2024-07-11 02:39:52 +02:00
commit 3f07d00f2a
13 changed files with 5673 additions and 0 deletions

28
Cargo.toml Normal file
View File

@@ -0,0 +1,28 @@
[package]
name = "minesweeper"
version = "0.1.0"
edition = "2021"
# Enable max optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3
# Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
incremental = false
debug = false
[dependencies]
bevy = { version = "0.14.0" }
bevy_ecs_tilemap = { git = "https://github.com/StarArawn/bevy_ecs_tilemap.git" }
image = "0.25.1"
imageproc = "0.25.0"
noise = { version = "0.9.0", features = ["images"] }
rand = "0.8.5"
rand_chacha = "0.3.1"