mirror of https://github.com/status-im/NimYAML.git
29 lines
784 B
Plaintext
29 lines
784 B
Plaintext
=======
|
|
NimYAML
|
|
=======
|
|
|
|
Introduction
|
|
============
|
|
|
|
**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
|
|
`YAML 1.2 <http://www.yaml.org/spec/1.2/spec.html>`_.
|
|
|
|
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
|
|
nimble install yaml
|
|
|
|
You can find a conceptual overview of the library `here <api.html>`_ and an
|
|
overview over the library's API `here <api/yaml.html>`_.
|
|
|
|
NimYAML 2.x
|
|
===========
|
|
|
|
**NimYAML 2.0.0** introduced some breaking changes.
|
|
Read about migrating to the new version `here </migrating.html>`_.
|
|
|
|
%quickstart%0
|