mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
9bfc50d1f1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
22 lines
892 B
Text
22 lines
892 B
Text
toml++ is a Header-only TOML config file parser and serializer for
|
|
C++17. TOML aims to be a minimal configuration file format that's easy
|
|
to read due to obvious semantics. TOML is designed to map unambiguously
|
|
to a hash table. TOML should be easy to parse into data structures in a
|
|
wide variety of languages.
|
|
|
|
Library features
|
|
|
|
* Header-only (optional!)
|
|
* Supports the latest TOML release (v1.0.0), plus optional support for
|
|
some unreleased TOML features
|
|
* Passes all tests in the toml-test suite
|
|
* Supports serializing to JSON and YAML
|
|
* Proper UTF-8 handling (incl. BOM)
|
|
* C++17 (plus some C++20 features where available, e.g. experimental
|
|
support for char8_t strings)
|
|
* Doesn't require RTTI
|
|
* Works with or without exceptions
|
|
* Tested on Clang (6+), GCC (7+) and MSVC (VS2019)
|
|
* Tested on x64, x86 and ARM
|
|
|
|
POXY_DOCS=YES option will generate html development documentation
|