31 lines
909 B
TOML
31 lines
909 B
TOML
[package]
|
|
name = "autobats"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.18", default-features = false, features = ["2d"] }
|
|
criterion = { version = "0.8.1", default-features = false, features = ["cargo_bench_support", "rayon"] }
|
|
dirs = "6.0.0"
|
|
include_dir = "0.7.4"
|
|
ordered-float = "5.1.0"
|
|
rstar = "0.12.2"
|
|
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
|
|
|
|
[dev-dependencies]
|
|
rand = "0.9.2"
|
|
rand_hc = "0.4.0"
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|