This commit is like Batman, It has no parents.
This commit is contained in:
28
Cargo.toml
Normal file
28
Cargo.toml
Normal 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"
|
Reference in New Issue
Block a user