You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
New
Add TomlReader for sequential parsing.
Add TomlStringReader, TomlNativeReader (JVM) as implementation.
Add Toml.parseToTomlTable(TomlReader), Toml.decodeFromReader, Toml.decodeFromNativeReader (JVM) for convenience.
Add TomlNativeWriter (JVM) and Toml.encodeToNativeWriter (JVM) for better JVM integration.
Add TomlContentPolymorphicSerializer for polymorphic serialization without class discriminator.
Add TomlConfig.explicitNulls so that during encoding any entry with null value is ignored and during decoding any nullable property without default value is set to null automatically.
Add TomlEncoder.toml, TomlDecoder.toml for referring to the Toml instance.