An open API service indexing awesome lists of open source software.

https://github.com/tato/sometoml

a little bit of toml for you
https://github.com/tato/sometoml

toml zig

Last synced: over 1 year ago
JSON representation

a little bit of toml for you

Awesome Lists containing this project

README

          

### sometoml
- is a toml v1.0.0 library for zig
- supports serialization and deserialization
- is still in early stages

### not yet implemented
- date types
- good error reporting

### also planned
- deserializing into arbitrary zig structs
- customizable serializing and deserializing
- and then, who knows???

### how to use it
- `git submodule add https://github.com/tato/sometoml`
- `exe.addPackagePath("toml", "sometoml/toml.zig");`
- `const toml = @import("toml");`
- `const doc = toml.parse(allocator, reader);`

🙌