lune/crates/lune-roblox/Cargo.toml
2024-11-01 05:45:11 +10:00

29 lines
842 B
TOML

[package]
name = "lune-roblox"
version = "0.1.4"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/lune-org/lune"
description = "Roblox library for Lune"
[lib]
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
mlua = { version = "0.9.9", features = ["luau"] }
glam = "0.27"
rand = "0.8"
thiserror = "1.0"
once_cell = "1.17"
rbx_binary = { version = "0.7.7", git = "https://github.com/rojo-rbx/rbx-dom/" }
rbx_dom_weak = { version = "2.9.0", git = "https://github.com/rojo-rbx/rbx-dom/" }
rbx_reflection = { version = "4.7.0", git = "https://github.com/rojo-rbx/rbx-dom/" }
rbx_reflection_database = { version = "0.2.12", git = "https://github.com/rojo-rbx/rbx-dom/" }
rbx_xml = { version = "0.13.5", git = "https://github.com/rojo-rbx/rbx-dom/" }
lune-utils = { version = "0.1.3", path = "../lune-utils" }