20 lines
663 B
TOML
20 lines
663 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"
|
|
rusqlite = { version = "0.37", default-features = false, features = ["bundled", "blob", "functions", "jiff"] }
|
|
rusqlite_migration = { version = "2.3.0", features = ["from-directory"] }
|
|
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
|