mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
28 lines
512 B
TOML
28 lines
512 B
TOML
[package]
|
|
name = "lune-roblox"
|
|
version = "0.2.0"
|
|
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.10.3", features = ["luau"] }
|
|
|
|
glam = "0.30"
|
|
rand = "0.9"
|
|
thiserror = "2.0"
|
|
|
|
rbx_binary = "1.0"
|
|
rbx_dom_weak = "3.0"
|
|
rbx_reflection = "5.0"
|
|
rbx_reflection_database = "1.0"
|
|
rbx_xml = "1.0"
|
|
|
|
lune-utils = { version = "0.2.0", path = "../lune-utils" }
|