mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
27 lines
453 B
TOML
27 lines
453 B
TOML
[package]
|
|
name = "lune-roblox"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mlua = { version = "0.9.7", features = ["luau"] }
|
|
|
|
glam = "0.27"
|
|
rand = "0.8"
|
|
thiserror = "1.0"
|
|
once_cell = "1.17"
|
|
|
|
rbx_binary = "0.7.3"
|
|
rbx_dom_weak = "2.6.0"
|
|
rbx_reflection = "4.4.0"
|
|
rbx_reflection_database = "0.2.9"
|
|
rbx_xml = "0.13.2"
|
|
|
|
lune-utils = { version = "0.1.0", path = "../lune-utils" }
|