package toml
TOML parser.
Install
Dune Dependency
Authors
Maintainers
Sources
v5.0.0.tar.gz
sha256=f36ed18e008905a7fb4da87b589485aef77ad83fb3a470335c5d67891b36d73a
md5=e68d21fdbb6b255909305f8707a54951
doc/CHANGELOG.html
Changelog
5.0.0
- migration to dune
- split between toml and toml-cconv
- compatibility with safe-string for OCaml 4.06
- remove dependency on str
4.0.0
- Reintroduces public data types (major breaking change).
- Exception-safe parsing interface.
- Add lenses for accessing/updating nested data.
3.0.0
- Add support for version 0.4 of the language.
2.2.1
- Fixed dependencies.
2.2.0
- Numerous convenience functions to reduce verbosity
- Fix wrong error location returned when parsing an invalid Toml file
- Parsing a Toml file always throws
TomlParser.Error
and neverFailure
- Add array of tables
- Add @since tags in the documentation
- Add changelog
2.0.0 and 2.1.0
- Add LGPL licence
- New parser with menhir
- Support for nested arrays
- Support for dates (with Unix.tm type)
- Support for unicodes espaces ('\uXXXX')
- Remove the "toml" prefix from type names
- Add Toml printer
- Abstract internal types in modules (for constraint application and code factorization)
- A lot more documentation in source code and Readme
- Display error location when a ParseError occurs
1.0.0
- Base parser from ocamllex and ocamlyacc