-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use kotlinx serializer native features #148
Comments
Feature for |
Thanks to @thake fixed the release issue, I'll work on it in next weeks |
@thake Currently working on it, and found a way of encode every possible schema. I'll push the pr (wip) in next days. It will come with other fixes and optimisations. |
Some primitives (char, byte, short) are going to be handled by default as int |
We will be allowed of serializing unions with non-record types (like union of double, string and records by example) |
|
This issue will be the follow up to assist the long way of using native kotlinx serialization features like
@Contextual
,@SerialName
,serializerModules
and much more to unlock native features like value classes, serialization modules declaration, custom serializers.This work would touch to the schema generation and the encoding/decoding codebase, while we will try to not touch the user entrypoint
Avro
.The text was updated successfully, but these errors were encountered: