Bevy pkv is a persistent key value store for bevy.
The end goal is to write something cross-platform (including web) that allows storing things like settings, save games etc. It should just be a thin wrapper around other crates.
It's currently using sled + bincode for storage, I'm not sure if that's the best choice, but it will do for now.
It currently creates a single global key value store when the plugin is initialized.
Add the plugin to your app
rust
App::new()
.add_plugins(DefaultPlugins)
.add_plugin(PkvPlugin)
.run();
Use it in a system:
```rust
fn setup(mut pkv: ResMut
// alternatively, using the slightly less efficient generic api:
pkv.set("username", &"alice".to_string())
.expect("failed to store username");
}
} ```
Using your own types implementing serde::Serialize
and Deserialize
:
```rust
struct User { name: String, }
fn setup(mut pkv: ResMut
See the examples for further usage
The main
branch targets the latest bevy release.
I intend to support the main
branch of Bevy in the bevy-main
branch.
|bevy|bevy_pkv| |---|---| |0.7|0.2,0.3,main| |0.6|0.1|
MIT or Apache-2.0