autobarts/Cargo.toml

22 lines
703 B
TOML

[package]
name = "autobats"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { version = "0.18", default-features = false, features = ["2d"] }
dirs = "6.0.0"
include_dir = "0.7.4"
ordered-float = "5.1.0"
rusqlite = { version = "0.37", default-features = false, features = ["bundled", "blob", "functions", "jiff"] }
rusqlite_migration = { version = "2.3.0", features = ["from-directory"] }
spart = "0.5.0"
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