bevy_pkv icon indicating copy to clipboard operation
bevy_pkv copied to clipboard

Cross-platform (including wasm) persistent key value store plugin for rust games/apps

Results 16 bevy_pkv issues
Sort by recently updated
recently updated
newest added
trafficstars

The pattern of keeping `PkvStore` as a resource is not compatible with offloading usage onto a task pool, because `PkvStore` cannot be cloned. Is the intended usage to create a...

It's not exactly a mistake. But I read the documentation and didn’t understand anything about how to work with them. Your library is working. But I don’t understand how I...

## Proposal and Use-Case I would propose an option to store the keys and values as a file in a human-readable format. In my use case, I would like to...

Hey! Great library! I'm so glad this is available to use! I think the following method would add to the usability of the library: ``` pub fn get_or( pkv: &PkvStore,...

I was using 0.11 with my bevy game. Now after upgrading to 0.12 I got the following error ```ignore thread 'main' panicked at /Users/[...]/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_pkv-0.12.0/src/redb_store.rs:82:44: Failed to init key value store:...

Attempting to serialize a HashMap with non-string keys results an error in wasm (but works on native). This appears to be an intentional limitation of serde_json. It would be nice...