Skip to content

Commit

Permalink
feat: bump bevy to v0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
umut-sahin committed Nov 5, 2023
1 parent ba83e4f commit 3c793c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ authors = [
]

[dependencies]
bevy = { version = "0.11", features = ["serialize"] }
bevy = { version = "0.12", features = ["serialize"] }
bincode = { version = "1.3", optional = true }
ron = { version = "0.8", optional = true }
serde = { version = "1.0" }
serde_ini = { version = "0.2", optional = true }
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.9", optional = true }
thiserror = { version = "1.0" }
toml = { version = "0.7", optional = true }
toml = { version = "0.8", optional = true }

[target.'cfg(target_family = "wasm")'.dependencies]
gloo-storage = { version = "0.2" }
gloo-storage = { version = "0.3" }

[dev-dependencies]
anyhow = { version = "1.0" }
Expand Down
2 changes: 1 addition & 1 deletion src/persistent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::prelude::*;
/// and a default resource in case the persistent resource is created for the first time.
///
/// They are synchronized with the disk from the moment of their creation.
#[derive(Component, Debug, Reflect, Resource)]
#[derive(Component, Debug, Resource)]
pub struct Persistent<R: Resource + Serialize + DeserializeOwned> {
pub(crate) name: String,
pub(crate) format: StorageFormat,
Expand Down

0 comments on commit 3c793c1

Please sign in to comment.