29 lines
872 B
TOML
29 lines
872 B
TOML
[package]
|
|
name = "autobarts"
|
|
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"
|
|
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
|
|
|
|
[profile.bench]
|
|
inherits = "release"
|
|
|
|
[[bench]]
|
|
name = "main"
|
|
harness = false
|