From 167be8282e1a31b70cb1b4844ca268668dabda55 Mon Sep 17 00:00:00 2001
From: Louis Capitanchik <contact@louiscap.co>
Date: Tue, 9 Jul 2024 14:37:56 +0100
Subject: [PATCH] Include bevy serialization when enabling serde feature

---
 Cargo.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 0bccedb..737343d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "micro_banimate"
-version = "0.9.0"
+version = "0.9.1"
 edition = "2021"
 license = "Apache-2.0"
 description = "Easily manage complex Bevy 2D sprite animations"
@@ -18,7 +18,7 @@ required-features = ["json_loader"]
 default = ["json_loader"]
 json_loader = ["serde", "dep:serde_json"]
 toml_loader = ["serde", "dep:toml"]
-serde = ["dep:serde"]
+serde = ["dep:serde", "bevy/serialize"]
 
 [dependencies]
 anyhow = "^1.0"
-- 
GitLab