Registry / serialization / rbx-xml

rbx-xml

JSON →
library2.0.1rscratesunverified

Implementation of Roblox's XML file formats, rbxlx and rbxmx.

# Cargo.toml [dependencies] rbx_xml = "2.0.1"
INSTALL
IMPORT
SIG · RBX-XML
R
rbx-xml
serializationrustv2.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

from_reader
use rbx_xml::from_reader;

Parse a Roblox XML file into a DOM tree.

use rbx_xml::from_reader; use std::fs::File; fn main() -> Result<(), Box<dyn std::error::Error>> { let file = File::open("model.rbxmx")?; let (dom, _) = from_reader(file)?; println!("Loaded {} instances", dom.instances().len()); Ok(()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.0.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
rbx-xml — cargo add rbx-xml · libregistry