From f5a0d87ba0b80de701b4acd5fa2daef45422f057 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Sun, 28 Feb 2021 15:52:32 +0530 Subject: [PATCH 1/3] Added Yaml category, and mini-yaml There is not a Yaml parser listed here, although there is one on libhunt --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 122c9e6..63c15e5 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny - [Virtual Machines](#virtual-machines) - [Web Application Framework](#web-application-framework) - [XML](#xml) + - [Yaml](#yaml) - [Miscellaneous](#miscellaneous) - [Software](#software) - [Compiler](#compiler) @@ -909,6 +910,10 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [TinyXML++](https://github.com/rjpcomputing/ticpp) - A completely new interface to TinyXML that uses MANY of the C++ strengths. Templates, exceptions, and much better error handling. [MIT] * [Xerces-C++](http://xerces.apache.org/xerces-c/) - A validating XML parser written in a portable subset of C++. [Apache2] +## Yaml + +* [mini-yaml](https://github.com/jimmiebergmann/mini-yaml) - Single header YAML 1.0 C++11 serializer/deserializer. + ## Miscellaneous *Useful libraries or tools that don't fit in the categories above or maybe just not categorised yet* From 3b72f348d22df7cb8997a5ce2dde1e54af9971c6 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Sun, 28 Feb 2021 15:59:41 +0530 Subject: [PATCH 2/3] Add License for mini-yaml --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63c15e5..0b59ba4 100644 --- a/README.md +++ b/README.md @@ -912,7 +912,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny ## Yaml -* [mini-yaml](https://github.com/jimmiebergmann/mini-yaml) - Single header YAML 1.0 C++11 serializer/deserializer. +* [mini-yaml](https://github.com/jimmiebergmann/mini-yaml) - Single header YAML 1.0 C++11 serializer/deserializer. [MIT] ## Miscellaneous *Useful libraries or tools that don't fit in the categories above or maybe just not categorised yet* From ee25e5560d8cde6a8375c45ad85ae588606639e8 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Sun, 28 Feb 2021 16:04:10 +0530 Subject: [PATCH 3/3] Added yaml-cpp yaml-cpp is already listed on libhunt, adding it to the Yaml category here --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0b59ba4..da52c3f 100644 --- a/README.md +++ b/README.md @@ -913,6 +913,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny ## Yaml * [mini-yaml](https://github.com/jimmiebergmann/mini-yaml) - Single header YAML 1.0 C++11 serializer/deserializer. [MIT] +* [yaml-cpp](https://github.com/jbeder/yaml-cpp) - A YAML parser and emitter in C++ [MIT] ## Miscellaneous *Useful libraries or tools that don't fit in the categories above or maybe just not categorised yet*