| Crates.io | assembly |
| lib.rs | assembly |
| version | 0.7.0-beta.0 |
| created_at | 2019-04-30 09:20:48.003851+00 |
| updated_at | 2020-11-25 07:26:31.602735+00 |
| description | Library for files/resources for LU related software |
| homepage | https://xiphoseer.github.io |
| repository | https://github.com/xiphoseer/assembly_rs |
| max_upload_size | |
| id | 131138 |
| size | 3,955 |
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:
[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:
[dependencies.assembly]
version = "0.6"
default-features = false
features = ["data", "maps"]