init repo

This commit is contained in:
2026-04-22 20:55:36 +02:00
commit 0155516457
32 changed files with 7712 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "bevy-template-ai"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.18.1", features = ["dynamic_linking"] }
# Fast enough in dev, not awful to iterate.
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
# Shipping profile. No dynamic_linking in release command.
[profile.release]
codegen-units = 1
lto = "thin"
strip = "debuginfo"