2023-03-09 12:17:25 +01: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-22 09:39:26 +01:00
|
|
|
lazy_static.workspace = true
|
2023-03-09 12:17:25 +01:00
|
|
|
|
2023-03-10 11:07:03 +01:00
|
|
|
glam = "0.23"
|
2023-03-15 10:18:13 +01:00
|
|
|
rand = "0.8"
|
2023-03-09 12:17:25 +01:00
|
|
|
thiserror = "1.0"
|
|
|
|
|
2023-03-17 09:18:29 +01:00
|
|
|
rbx_binary = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "88aed24a127d489431265ed42b408b003e08c025" }
|
|
|
|
rbx_dom_weak = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "88aed24a127d489431265ed42b408b003e08c025" }
|
|
|
|
rbx_reflection = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "88aed24a127d489431265ed42b408b003e08c025" }
|
|
|
|
rbx_reflection_database = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "88aed24a127d489431265ed42b408b003e08c025" }
|
|
|
|
rbx_xml = { git = "https://github.com/rojo-rbx/rbx-dom", rev = "88aed24a127d489431265ed42b408b003e08c025" }
|
2023-03-11 11:21:34 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
anyhow = "1.0"
|