Updated README.
This commit is contained in:
parent
564dfdae80
commit
aa97d9cc6a
|
@ -4,7 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="generator" content="Docutils 0.11: http://docutils.sourceforge.net/" />
|
<meta name="generator" content="Docutils 0.11: http://docutils.sourceforge.net/" />
|
||||||
<title>D:YAML 0.4</title>
|
<title>D:YAML 0.5</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -338,9 +338,11 @@ ul.auto-toc {
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="document" id="d-yaml-0-4">
|
<div class="document" id="d-yaml-0-5">
|
||||||
<h1 class="title">D:YAML 0.4</h1>
|
<h1 class="title">D:YAML 0.5</h1>
|
||||||
|
|
||||||
|
<p><strong>Note</strong>: D:YAML 0.5 brings some <strong>breaking changes</strong>. See the
|
||||||
|
<a class="reference external" href="https://github.com/kiith-sa/D-YAML/blob/master/CHANGES.rst">changelog</a>.</p>
|
||||||
<div class="section" id="introduction">
|
<div class="section" id="introduction">
|
||||||
<h1>Introduction</h1>
|
<h1>Introduction</h1>
|
||||||
<p>D:YAML is an open source YAML parser and emitter library for the D programming
|
<p>D:YAML is an open source YAML parser and emitter library for the D programming
|
||||||
|
@ -379,6 +381,7 @@ scalar tags.</li>
|
||||||
the exception of <tt class="docutils literal">tag:yaml.org,2002:yaml</tt>, which is used to represent YAML
|
the exception of <tt class="docutils literal">tag:yaml.org,2002:yaml</tt>, which is used to represent YAML
|
||||||
code in YAML.</li>
|
code in YAML.</li>
|
||||||
<li>Remembers YAML style information between loading and dumping if possible.</li>
|
<li>Remembers YAML style information between loading and dumping if possible.</li>
|
||||||
|
<li>Reuses input memory and uses slices to minimize memory allocations.</li>
|
||||||
<li>There is no support for recursive data structures.
|
<li>There is no support for recursive data structures.
|
||||||
There are no plans to implement this at the moment.</li>
|
There are no plans to implement this at the moment.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
==========
|
==========
|
||||||
D:YAML 0.4
|
D:YAML 0.5
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
**Note**: D:YAML 0.5 brings some **breaking changes**. See the
|
||||||
|
`changelog <https://github.com/kiith-sa/D-YAML/blob/master/CHANGES.rst>`_.
|
||||||
|
|
||||||
------------
|
------------
|
||||||
Introduction
|
Introduction
|
||||||
------------
|
------------
|
||||||
|
@ -46,6 +49,7 @@ Features
|
||||||
the exception of ``tag:yaml.org,2002:yaml``, which is used to represent YAML
|
the exception of ``tag:yaml.org,2002:yaml``, which is used to represent YAML
|
||||||
code in YAML.
|
code in YAML.
|
||||||
* Remembers YAML style information between loading and dumping if possible.
|
* Remembers YAML style information between loading and dumping if possible.
|
||||||
|
* Reuses input memory and uses slices to minimize memory allocations.
|
||||||
* There is no support for recursive data structures.
|
* There is no support for recursive data structures.
|
||||||
There are no plans to implement this at the moment.
|
There are no plans to implement this at the moment.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue