bevy_scripting_tests/Cargo.toml

31 lines
1.0 KiB
TOML

[package]
name = "bevy_scripting_tests"
edition = "2021"
# 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", features = [
"lua54",
] }
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"