-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (43 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
50 lines (43 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "bevy_mod_scripting_lua"
version = "0.11.1"
authors = ["Maksymilian Mozolewski <makspl17@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Necessary functionality for Lua support with bevy_mod_scripting"
repository = "https://github.com/makspll/bevy_mod_scripting"
homepage = "https://github.com/makspll/bevy_mod_scripting"
keywords = ["bevy", "gamedev", "scripting", "rhai"]
categories = ["game-development"]
readme = "readme.md"
[package.metadata."docs.rs"]
features = ["lua54"]
[package.metadata.release]
enable-features = ["lua54"]
[features]
# enables loading possibly unsafe lua modules by lua scripts
unsafe_lua_modules = []
lua51 = ["mlua/lua51"]
lua52 = ["mlua/lua52"]
lua53 = ["mlua/lua53"]
lua54 = ["mlua/lua54"]
luajit = ["mlua/luajit"]
luajit52 = ["mlua/luajit52"]
luau = ["mlua/luau"]
mlua_serialize = ["mlua/serialize"]
mlua_macros = ["mlua/macros"]
mlua_async = ["mlua/async"]
[lib]
name = "bevy_mod_scripting_lua"
path = "src/lib.rs"
[dependencies]
bevy = { workspace = true, default-features = false }
bevy_mod_scripting_core = { workspace = true, features = ["mlua_impls"] }
mlua = { version = "0.10", features = ["vendored", "send", "macros"] }
parking_lot = "0.12.1"
uuid = "1.1"
smol_str = "0.2.2"
smallvec = "1.13"
profiling = { workspace = true }
[lints]
workspace = true