29 lines
991 B
TOML
29 lines
991 B
TOML
[package]
|
|
name = "strafesnet_rbx_loader"
|
|
version = "0.10.2"
|
|
edition = "2024"
|
|
repository = "https://git.itzana.me/StrafesNET/strafe-project"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Convert Roblox place and model files to StrafesNET data structures."
|
|
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytemuck = "1.14.3"
|
|
glam.workspace = true
|
|
regex = { version = "1.11.3", default-features = false, features = ["unicode-perl"] }
|
|
rbx_mesh = "0.6.0"
|
|
rbxassetid = { version = "0.1.0", path = "../rbxassetid", registry = "strafesnet" }
|
|
roblox_emulator = { version = "0.5.1", path = "../roblox_emulator", default-features = false, registry = "strafesnet" }
|
|
strafesnet_common.workspace = true
|
|
strafesnet_deferred_loader.workspace = true
|
|
rbx_binary = "2.0.1"
|
|
rbx_dom_weak = "4.1.0"
|
|
rbx_reflection = "6.1.0"
|
|
rbx_reflection_database = "2.0.2"
|
|
rbx_xml = "2.0.1"
|
|
|
|
[lints]
|
|
workspace = true
|