This repository contains the data structures required to interact with LTA's datamall APIs. All data structures implements Serialize
and Deserialize
.
# extra features available: fastfloat
lta-models = { version = "0.6.0" }
Format | Supported? | Tested? |
---|---|---|
JSON | ✅ | ✅ |
Bincode | ✅ | ✅ |
Flexbuffer | ✅ | ✅ |
MessagePack | ✅ | ✅ |
Some of the deserialization code may benefit from using the fastfloat
feature, but during testing the biggest performance improvement can be seen when you swap out the system allocator to something faster like mimalloc
or jemalloc
You can use this to deserialize LTA's datamall APIs. You can take a look at lta-rs for an example.
Just add the feature to your Cargo.toml
. You don't have to do anything else.
lta-models is licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)