Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | H | - | - | 60 | 50 | |
doc/ | H | - | - | 223 | 221 | |
docker/ | H | - | - | 127 | 97 | |
examples/ | H | - | - | 56 | 43 | |
include/ | H | - | - | 2,004 | 633 | |
regression-inputs/ | H | - | - | 2 | 1 | |
src/ | H | - | - | 10,969 | 6,828 | |
tests/ | H | - | - | 4,183 | 3,172 | |
.appveyor.yml | H A D | 26-Jun-2025 | 1.1 KiB | 30 | 12 | |
.gitignore | H A D | 26-Jun-2025 | 614 | 47 | 46 | |
.indent.pro | H A D | 26-Jun-2025 | 20 | 2 | 1 | |
.makefile | H A D | 26-Jun-2025 | 1.3 KiB | 64 | 54 | |
.travis.yml | H A D | 26-Jun-2025 | 536 | 29 | 22 | |
CMakeLists.txt | H A D | 26-Jun-2025 | 3.8 KiB | 161 | 139 | |
Changes | H A D | 26-Jun-2025 | 10.6 KiB | 373 | 243 | |
License | H A D | 26-Jun-2025 | 1.1 KiB | 21 | 17 | |
Makefile.am | H A D | 26-Jun-2025 | 1.4 KiB | 55 | 38 | |
ReadMe.md | H A D | 26-Jun-2025 | 1.1 KiB | 47 | 31 | |
announcement.msg | H A D | 26-Jun-2025 | 2.4 KiB | 90 | 57 | |
bootstrap | H A D | 26-Jun-2025 | 32 | 4 | 1 | |
configure.ac | H A D | 26-Jun-2025 | 2.2 KiB | 74 | 61 | |
yaml-0.1.pc.in | H A D | 26-Jun-2025 | 217 | 11 | 9 | |
yamlConfig.cmake.in | H A D | 26-Jun-2025 | 343 | 17 | 11 |
ReadMe.md
1## LibYAML - A C library for parsing and emitting YAML. 2 3To build and install the library, run: 4 5 $ ./configure 6 $ make 7 # make install 8 9Required packages: 10 11- gcc 12- libtool 13- make 14 15If you checked the source code from the Git repository, run 16 17 $ ./bootstrap 18 $ ./configure 19 $ make 20 # make install 21 22Required packages: 23 24- autoconf 25- libtool 26- make 27 28For more information, check the [LibYAML 29homepage](https://github.com/yaml/libyaml). 30 31Discuss LibYAML with the maintainers in IRC #libyaml irc.freenode.net. 32 33You may also use the [YAML-Core mailing 34list](http://lists.sourceforge.net/lists/listinfo/yaml-core). 35 36Submit bug reports and feature requests to the [LibYAML bug 37tracker](https://github.com/yaml/libyaml/issues/new). 38 39This project was developed for Python Software Foundation as a part of Google 40Summer of Code under the mentorship of Clark Evans. 41 42The LibYAML module was written by Kirill Simonov <xi@resolvent.net>. 43It is currently maintained by the YAML community. 44 45LibYAML is released under the MIT license. 46See the file LICENSE for more details. 47