Crates.io | bytebox |
lib.rs | bytebox |
version | 0.1.1 |
source | src |
created_at | 2023-12-26 14:21:31.861462 |
updated_at | 2023-12-27 22:40:16.024521 |
description | Easy and performant data storage inspired by Flutter's shared_preferences. |
homepage | https://github.com/drafteddev/bytebox |
repository | https://github.com/drafteddev/bytebox |
max_upload_size | |
id | 1080982 |
size | 60,613 |
ByteBox is an easy and performant data storage solution based on MessagePack. It provides a simple interface for storing and retrieving data in a compact format, making it efficient for various applications.
To use ByteBox in your Rust project, run: cargo add bytebox
or just add the latest version to your Cargo.toml
.
You can easily use ByteBox in your Bevy app by adding the bevy
feature and registering the ByteboxPlugin
plugin.
Add your boxes by calling ByteboxPlugin::new().with(my_box)
and access your boxes via the Res<ByteBox>
type in your systems.