2024-05-12 12:30:32 +01:00
|
|
|
[package]
|
|
|
|
name = "lune-roblox"
|
2024-08-22 20:30:36 +01:00
|
|
|
version = "0.1.4"
|
2024-05-12 12:30:32 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
2024-05-12 13:32:39 +01:00
|
|
|
repository = "https://github.com/lune-org/lune"
|
|
|
|
description = "Roblox library for Lune"
|
2024-05-12 12:30:32 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-10 12:07:56 +01:00
|
|
|
mlua = { version = "0.9.9", features = ["luau"] }
|
2024-05-12 12:30:32 +01:00
|
|
|
|
|
|
|
glam = "0.27"
|
|
|
|
rand = "0.8"
|
|
|
|
thiserror = "1.0"
|
|
|
|
once_cell = "1.17"
|
|
|
|
|
2024-08-22 20:24:32 +01:00
|
|
|
rbx_binary = "0.7.7"
|
|
|
|
rbx_dom_weak = "2.9.0"
|
|
|
|
rbx_reflection = "4.7.0"
|
|
|
|
rbx_reflection_database = "0.2.12"
|
|
|
|
rbx_xml = "0.13.5"
|
2024-05-12 12:30:32 +01:00
|
|
|
|
2024-08-10 12:07:56 +01:00
|
|
|
lune-utils = { version = "0.1.3", path = "../lune-utils" }
|