21 lines
752 B
TOML
21 lines
752 B
TOML
[package]
|
|
name = "bevy_scriptum"
|
|
authors = ["Jaroslaw Konik <konikjar@gmail.com>"]
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
categories = ["game-development"]
|
|
description = "Plugin for Bevy engine that allows you to write some of your game logic in a scripting language"
|
|
repository = "https://github.com/jarkonik/bevy_scriptum"
|
|
keywords = ["bevy", "rhai", "scripting", "game", "gamedev"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bevy = { default-features = false, version = "0.11.0", features = [
|
|
"bevy_asset",
|
|
] }
|
|
serde = "1.0.162"
|
|
rhai = { version = "1.14.0", features = ["sync", "internals", "unchecked"] }
|
|
thiserror = "1.0.40"
|