{"id":20128533,"url":"https://github.com/cococry/yaml-cpp-own","last_synced_at":"2026-05-08T22:33:09.290Z","repository":{"id":81041064,"uuid":"470176221","full_name":"cococry/yaml-cpp-own","owner":"cococry","description":null,"archived":false,"fork":false,"pushed_at":"2022-03-20T17:12:34.000Z","size":1147,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-30T20:19:49.114Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cococry.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-15T13:39:13.000Z","updated_at":"2024-05-22T03:29:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"b6d1493a-eb18-4adc-ad4a-70f63042f453","html_url":"https://github.com/cococry/yaml-cpp-own","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cococry/yaml-cpp-own","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cococry%2Fyaml-cpp-own","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cococry%2Fyaml-cpp-own/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cococry%2Fyaml-cpp-own/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cococry%2Fyaml-cpp-own/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cococry","download_url":"https://codeload.github.com/cococry/yaml-cpp-own/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cococry%2Fyaml-cpp-own/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32800153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T20:27:56.194Z","updated_at":"2026-05-08T22:33:09.264Z","avatar_url":"https://github.com/cococry.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# yaml-cpp [![Build Status](https://travis-ci.org/jbeder/yaml-cpp.svg?branch=master)](https://travis-ci.org/jbeder/yaml-cpp) [![Documentation](https://codedocs.xyz/jbeder/yaml-cpp.svg)](https://codedocs.xyz/jbeder/yaml-cpp/)\n\nyaml-cpp is a [YAML](http://www.yaml.org/) parser and emitter in C++ matching the [YAML 1.2 spec](http://www.yaml.org/spec/1.2/spec.html).\n\nTo get a feel for how it can be used, see the [Tutorial](https://github.com/jbeder/yaml-cpp/wiki/Tutorial) or [How to Emit YAML](https://github.com/jbeder/yaml-cpp/wiki/How-To-Emit-YAML). For the old API (version \u003c 0.5.0), see [How To Parse A Document](https://github.com/jbeder/yaml-cpp/wiki/How-To-Parse-A-Document-(Old-API)).\n\n# Problems? #\n\nIf you find a bug, post an [issue](https://github.com/jbeder/yaml-cpp/issues)! If you have questions about how to use yaml-cpp, please post it on http://stackoverflow.com and tag it [`yaml-cpp`](http://stackoverflow.com/questions/tagged/yaml-cpp).\n\n# How to Build #\n\nyaml-cpp uses [CMake](http://www.cmake.org) to support cross-platform building. The basic steps to build are:\n\n1. Download and install [CMake](http://www.cmake.org) (Resources -\u003e Download).\n\n**Note:** If you don't use the provided installer for your platform, make sure that you add CMake's bin folder to your path.\n\n2. Navigate into the source directory, and type:\n\n```\nmkdir build\ncd build\n```\n\n3. Run CMake. The basic syntax is:\n\n```\ncmake [-G generator] [-DYAML_BUILD_SHARED_LIBS=ON|OFF] ..\n```\n\n  * The `generator` is whatever type of build system you'd like to use. To see a full list of generators on your platform, just run `cmake` (with no arguments). For example:\n    * On Windows, you might use \"Visual Studio 12 2013\" to generate a Visual Studio 2013 solution or \"Visual Studio 14 2015 Win64\" to generate a 64-bit Visual Studio 2015 solution.\n    * On OS X, you might use \"Xcode\" to generate an Xcode project\n    * On a UNIX-y system, simply omit the option to generate a makefile\n\n  * yaml-cpp defaults to building a static library, but you may build a shared library by specifying `-DYAML_BUILD_SHARED_LIBS=ON`.\n\n  * For more options on customizing the build, see the [CMakeLists.txt](https://github.com/jbeder/yaml-cpp/blob/master/CMakeLists.txt) file.\n\n4. Build it!\n\n5. To clean up, just remove the `build` directory.\n\n# Recent Release #\n\n[yaml-cpp 0.6.0](https://github.com/jbeder/yaml-cpp/releases/tag/yaml-cpp-0.6.0) has been released! This release requires C++11, and no longer depends on Boost.\n\n[yaml-cpp 0.3.0](https://github.com/jbeder/yaml-cpp/releases/tag/release-0.3.0) is still available if you want the old API.\n\n**The old API will continue to be supported, and will still receive bugfixes!** The 0.3.x and 0.4.x versions will be old API releases, and 0.5.x and above will all be new API releases.\n\n# API Documentation \n\nThe autogenerated API reference is hosted on [CodeDocs](https://codedocs.xyz/jbeder/yaml-cpp/index.html)\n\n# Third Party Integrations\n\nThe following projects are not officially supported:\n\n- [Qt wrapper](https://gist.github.com/brcha/d392b2fe5f1e427cc8a6)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcococry%2Fyaml-cpp-own","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcococry%2Fyaml-cpp-own","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcococry%2Fyaml-cpp-own/lists"}