bevy_pkv
is a cross-platform persistent key value store for rust apps.
Use it for storing things like settings, save games etc.
Currently, the Bevy dependency is optional, so it may be used in other games/apps as well.
Add a store resource to your app
```rust no_run
use bevy::prelude::*; use bevy_pkv::PkvStore;
fn main() { App::new() .addplugins(DefaultPlugins) .insertresource(PkvStore::new("FooCompany", "BarGame")) // ...insert systems etc. .run(); }
```
This will create or load a store in the appropriate location for your system, and make it available to bevy systems:
```rust ignore
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 ignore
struct User { name: String, }
fn setup(mut pkv: ResMut
See the examples for further usage
Disable the default features when adding the dependency:
toml
bevy_pkv = {version = 0.7, default-features = false}
redb
and rmp_serde
(MessagePack) is used for storage. It's creating a bevy_pkv.redb
db in the appropriate application data directory for your system.
Alternatively, disable default-features and enable the rocksdb
feature to use a RocksDB-based implementation or sled
feature to use sled db.
Window.localStorage
and serde_json
is used for storage. Perhaps IndexedDb and something else would have been a better choice, but its API is complicated, and I wanted a simple implementation and a simple synchronous API.
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.11|0.8, main| |0.10|0.7| |0.9 |0.6| |0.8 |0.5| |0.7 |0.2, 0.3, 0.4| |0.6 |0.1|
MIT or Apache-2.0