tomlz icon indicating copy to clipboard operation
tomlz copied to clipboard

A well-tested TOML parsing library for Zig

Results 6 tomlz issues
Sort by recently updated
recently updated
newest added

previously something like ``` [foo] ``` would fail to parse, due to there not being a newline after the header. I haven't tested this with zig nightly yet, but it...

Both ```toml [ [foo]] ``` and ```toml [[foo] ] ``` Are currently permitted which are the last two invalid tests which are not passing (i.e. _are_ parsing). We should disallow...

bug
too-permissive

Zig's standard library is currently missing datetime support. There are third party effors such as [zig-datetime](https://github.com/frmdstryr/zig-datetime) that have popped up and might be worth supporting. I think we should only...

enhancement

To ensure that we do not have any nasty bugs we should test our parser with randomly generated input/output using fuzzing. I've never done this with Zig before but it...

fuzzing

previously something like ``` [foo] ``` would fail to parse, due to there not being a newline after the header. I haven't tested this with zig nightly yet, but it...

Thanks for the great library. I have a use case where I'd like to decode names with arb names but whose values have a known types. In zig I'd normally...