2016-01-13 22:43:12 +01:00
|
|
|
=======
|
|
|
|
NimYAML
|
|
|
|
=======
|
|
|
|
|
2016-02-12 19:53:25 +01:00
|
|
|
Introduction
|
|
|
|
============
|
2016-02-02 21:14:56 +01:00
|
|
|
|
|
|
|
**NimYAML** is a pure YAML implementation for Nim. It is able to read from and
|
|
|
|
write to YAML character streams, and to serialize from and construct to native
|
|
|
|
Nim types. It exclusively supports
|
2019-08-31 22:18:18 -04:00
|
|
|
`YAML 1.2 <http://www.yaml.org/spec/1.2/spec.html>`_.
|
2016-02-12 19:53:25 +01:00
|
|
|
|
2016-02-16 20:44:40 +01:00
|
|
|
Source code can be found on `GitHub <https://github.com/flyx/NimYAML>`_. You can
|
|
|
|
install it with `Nimble <https://github.com/nim-lang/nimble>`_:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
2016-06-05 19:41:09 +02:00
|
|
|
nimble install yaml
|
2016-02-16 20:44:40 +01:00
|
|
|
|
2023-11-27 23:05:05 +01:00
|
|
|
You can find a conceptual overview of the library `here <api.html>`_ and an
|
|
|
|
overview over the library's API `here <api/yaml.html>`_.
|
|
|
|
|
2023-08-30 22:48:58 +02:00
|
|
|
NimYAML 2.x
|
|
|
|
===========
|
|
|
|
|
|
|
|
**NimYAML 2.0.0** introduced some breaking changes.
|
|
|
|
Read about migrating to the new version `here </migrating.html>`_.
|
|
|
|
|
2019-08-31 22:18:18 -04:00
|
|
|
%quickstart%0
|