28 lines
1.0 KiB
TOML
28 lines
1.0 KiB
TOML
[package]
|
|
name = "bevy_github_ci_template"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0 OR CC0-1.0"
|
|
|
|
# Compile with Performance Optimizations:
|
|
# https://bevyengine.org/learn/book/getting-started/setup/#compile-with-performance-optimizations
|
|
|
|
# Enable a small amount of optimization in debug mode
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
bevy_mod_scripting = { git = "https://github.com/makspll/bevy_mod_scripting", features = [
|
|
"lua54", "lua",
|
|
"lua_script_api",
|
|
], rev ="c497b432b53e7d" }
|
|
bevy_mod_scripting_core = { git = "https://github.com/makspll/bevy_mod_scripting", rev ="c497b432b53e7d" }
|
|
bevy_mod_scripting_lua = { git = "https://github.com/makspll/bevy_mod_scripting", rev ="c497b432b53e7d" }
|
|
bevy_script_api = { git = "https://github.com/makspll/bevy_mod_scripting", rev ="c497b432b53e7d", features= ["lua"] }
|
|
bevy = { version = "0.13.1", features = ["multi-threaded"] }
|
|
rand = "0.8.5"
|