autobarts/Cargo.toml
2026-01-13 20:47:26 -08:00

17 lines
552 B
TOML

[package]
name = "autobats"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.18", default-features = false, features = ["2d"] }
rusqlite = { version = "0.38", default-features = false, features = ["bundled", "blob", "functions", "jiff"] }
steel-core = { git="https://github.com/mattwparas/steel.git", branch = "master" }
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3