From 252643c23813bae32dcf380429ed8290b195f838 Mon Sep 17 00:00:00 2001 From: Ashi Krishnan Date: Wed, 14 Oct 2020 14:13:21 -0400 Subject: [PATCH] Make CustomEntitySerializer public Could we make this trait public? It would be nice to implement it to control entity keys without worrying about the rest of serialization. --- src/serialize.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/serialize.rs b/src/serialize.rs index 122686a0..ce79ff24 100644 --- a/src/serialize.rs +++ b/src/serialize.rs @@ -36,7 +36,7 @@ pub use crate::internals::serialize::{ de::WorldDeserializer, id::{Canon, EntityName, EntitySerializer}, ser::{SerializableWorld, WorldSerializer}, - AutoTypeKey, DeserializeIntoWorld, DeserializeNewWorld, Registry, TypeKey, UnknownType, + AutoTypeKey, CustomEntitySerializer, DeserializeIntoWorld, DeserializeNewWorld, Registry, TypeKey, UnknownType, }; #[cfg(feature = "type-uuid")]