This is a Rust version of the Assembly C++ library. It is a library to read and possibly write files, formats and resources of LEGO Universe game files.
Add this to your Cargo.toml
:
toml
[dependencies]
assembly = "0.6"
This crate is a meta-crate combining multiple modules. Each submodule can
be enabled or disabled by using the suffix after assembly-
as the feature flag.
For example, to only use the data and maps
modules, update your Cargo.toml
to include:
toml
[dependencies.assembly]
version = "0.6"
default-features = false
features = ["data", "maps"]