bevy-persistent 0.5.0

A Bevy helper to easily manage resources that need to persist across game sessions.
Documentation
[dependencies.bevy]
default-features = false
version = "0.13"

[dependencies.bincode]
optional = true
version = "1.3"

[dependencies.ron]
optional = true
version = "0.8"

[dependencies.serde]
version = "1.0"

[dependencies.serde_ini]
optional = true
version = "0.2"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.serde_yaml]
optional = true
version = "0.9"

[dependencies.thiserror]
version = "1.0"

[dependencies.toml]
optional = true
version = "0.8"
[dev-dependencies.anyhow]
version = "1.0"

[dev-dependencies.bevy]
features = ["serialize"]
version = "0.13"

[dev-dependencies.dirs]
version = "5.0"

[features]
all = ["bincode", "ini", "json", "pretty", "ron", "toml", "yaml"]
default = []
ini = ["serde_ini"]
json = ["serde_json"]
library = []
pretty = []
yaml = ["serde_yaml"]

[package]
authors = ["Umut Şahin <umutsahin@protonmail.com>", "Shane Lillie <ignignokterr@gmail.com>", "Eri Pazos <eri@inventati.org>", "Scott Godwin <sgodwincs@gmail.com>", "Helium <liqhelium@gmail.com>"]
categories = ["config", "filesystem", "game-development"]
description = "A Bevy helper to easily manage resources that need to persist across game sessions."
edition = "2021"
keywords = ["gamedev", "bevy", "persistent", "resource"]
license = "MIT OR Apache-2.0"
name = "bevy-persistent"
readme = "README.md"
repository = "https://github.com/umut-sahin/bevy-persistent/"
version = "0.5.0"
[package.metadata.docs.rs]
features = ["all"]
[target."cfg(not(target_family = \"wasm\"))".dev-dependencies.tempfile]
version = "3.4"
[target."cfg(target_family = \"wasm\")".dependencies.gloo-storage]
version = "0.3"
[target."cfg(target_family = \"wasm\")".dev-dependencies.wasm-bindgen-test]
version = "0.3"