[no description]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "bevinator"
version = "0.1.0"
edition = "2024"


[dependencies]
aoc = { version = "0.1.0", path = "../aoc" }
bevy = { version = "0.19.0", features = ["dynamic_linking"] }
bevy-inspector-egui = "0.37.0"
bevy_ecs_tilemap = { git = "https://github.com/taboky-dev/bevy_ecs_tilemap", branch = "bevy-0.19" }
rand = "0.10.1"

[profile.dev]
opt-level = 1
overflow-checks= false

[profile.dev.package."*"]
opt-level = 3

[patch.crates-io]
rustc-hash = { git = "https://github.com/rust-lang/rustc-hash.git", rev= "1a998d5b89b04ba730d4cd249f811e8b48aa7d8c" }