[no description]
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..f2205dd
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,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" }