2023-03-09 11:17:25 +00:00
|
|
|
[package]
|
|
|
|
name = "lune-roblox"
|
|
|
|
publish = false
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
keywords.workspace = true
|
|
|
|
categories.workspace = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lune_roblox"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
mlua.workspace = true
|
2023-03-25 16:37:12 +00:00
|
|
|
once_cell.workspace = true
|
2023-03-09 11:17:25 +00:00
|
|
|
|
2023-03-10 10:07:03 +00:00
|
|
|
glam = "0.23"
|
2023-03-15 09:18:13 +00:00
|
|
|
rand = "0.8"
|
2023-03-09 11:17:25 +00:00
|
|
|
thiserror = "1.0"
|
|
|
|
|
2023-04-29 09:53:39 +01:00
|
|
|
rbx_binary = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "e4c94ab7b495adb83c0c5fc055167b3e2b4b637a" }
|
|
|
|
rbx_dom_weak = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "e4c94ab7b495adb83c0c5fc055167b3e2b4b637a" }
|
|
|
|
rbx_reflection = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "e4c94ab7b495adb83c0c5fc055167b3e2b4b637a" }
|
|
|
|
rbx_reflection_database = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "e4c94ab7b495adb83c0c5fc055167b3e2b4b637a" }
|
|
|
|
rbx_xml = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "e4c94ab7b495adb83c0c5fc055167b3e2b4b637a" }
|
2023-03-11 10:21:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
anyhow = "1.0"
|