YEAST is a user-friendly solution for serialization and deserialization to and from JSON, XML and Binary formats, with additional data formats expected to be supported in the near future.YEAST is a code package designed to enhance the serialization workflow for editor and runtime data. It addresses the limitations of the built-in JsonUtility. Currently, it supports JSON, XML and Binary as formats, but there are plans to include more formats in the future.Dependencies: NoneContent:Source Code (C#)Assembly DefinitionsDemo ScriptSerialization (throws exception if type extends UnityEngine.Object or object contains circular references)object -> string (JSON)object -> string (XML)object -> byte[]Deserialization (throws exception if type or input data is invalid)Type + string (JSON) -> objectType + string (XML) -> objectType + byte[] -> objectThere is a central wrapper class called "Yeast" that abstracts the package, as well as individual classes "JSON", "XML" and "BINARY" that abstract their respective data format