23 lines
886 B
TOML
Raw Normal View History

2024-01-30 17:41:16 -08:00
[package]
2024-01-30 17:46:23 -08:00
name = "strafesnet_rbx_loader"
2024-10-04 16:58:01 -07:00
version = "0.5.2"
2024-01-30 17:41:16 -08:00
edition = "2021"
2025-01-03 03:42:20 -08:00
repository = "https://git.itzana.me/StrafesNET/strafe-project"
2024-03-29 01:44:38 -07:00
license = "MIT OR Apache-2.0"
description = "Convert Roblox place and model files to StrafesNET data structures."
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
2024-01-30 17:41:16 -08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-29 01:44:38 -07:00
bytemuck = "1.14.3"
2024-10-01 16:52:44 -07:00
glam = "0.29.0"
2024-01-30 17:41:16 -08:00
lazy-regex = "3.1.0"
2024-03-29 01:44:38 -07:00
rbx_binary = { version = "0.7.4", registry = "strafesnet" }
rbx_dom_weak = { version = "2.7.0", registry = "strafesnet" }
2024-07-22 13:49:41 -07:00
rbx_mesh = "0.1.2"
2024-03-29 01:44:38 -07:00
rbx_reflection_database = { version = "0.2.10", registry = "strafesnet" }
rbx_xml = { version = "0.13.3", registry = "strafesnet" }
2025-01-02 20:22:05 -08:00
roblox_emulator = { path = "../roblox_emulator", registry = "strafesnet" }
strafesnet_common = { path = "../common", registry = "strafesnet" }