A TOML 1.0.0 serialization library for Zig
Find a file
2024-03-04 17:28:32 +00:00
example Update build.zig to 0.11 and move bin.zig to example dir. 2023-08-02 02:46:32 -05:00
src fix var:const and memcopy 2024-02-21 14:54:40 -08:00
.gitignore fix var:const and memcopy 2024-02-21 14:54:40 -08:00
build.zig add toml-zig to module 2024-02-22 15:52:55 -08:00
build.zig.zon add zig zon 2024-02-22 12:35:12 -08:00
LICENSE Initial commit 2022-08-14 20:37:23 +02:00
README.md Update 'README.md' 2022-10-11 03:09:22 +02:00

toml-zig

A TOML 1.0.0 deserialization/serialization library for Zig

Status

Current TOML 1.0 Spec Status:

  • Strings + all escapes, String Literals, Multiline Strings, Multiline String Literals.
  • Bools
  • DateTime (via private DateTime implementation with the methods for EPOCH/timestamp conversion)
  • Floats
  • Integers
  • Arrays
  • Tables
  • Inline Tables
  • Array Tables
  • Deserialization of all above
  • Subtables support (dots)
  • Serialization
  • Comments

Pull Requests

Feel free to submit any pull request regarding new features or behavior change.