add libyaml-rust

pull/9/head
kud1ing 10 years ago
parent 5144efe706
commit 3c9689362a

@ -98,6 +98,7 @@ Only projects that are stable and useful to users are added. Projects that do no
* XML
* [Florob/RustyXML](https://github.com/Florob/RustyXML) — an XML parser written in Rust [<img src="https://travis-ci.org/Florob/RustyXML.svg?branch=master">](https://travis-ci.org/Florob/RustyXM)
* [netvl/rust-xml](https://github.com/netvl/rust-xml) — a streaming XML library [<img src="https://travis-ci.org/netvl/rust-xml.svg?branch=master">](https://travis-ci.org/netvl/rust-xml)
* YAML
### Game development

@ -70,6 +70,8 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
* [erickt/rust-tnetstring](https://github.com/erickt/rust-tnetstring) — [<img src="https://travis-ci.org/erickt/rust-tnetstring.svg?branch=master">](https://travis-ci.org/erickt/rust-tnetstring)
* XML
* [Ygg01/xml-air](https://github.com/Ygg01/xml-air) — A hybrid pull, DOM parser written in pure Rust [<img src="https://travis-ci.org/Ygg01/xml-air.svg?branch=master">](https://travis-ci.org/Ygg01/xml-air)
* YAML
* [kimhyunkang/libyaml-rust](https://github.com/kimhyunkang/libyaml-rust) — [libyaml](http://pyyaml.org/wiki/LibYAML) bindings [<img src="https://travis-ci.org/kimhyunkang/libyaml-rust.svg?branch=master">](https://travis-ci.org/kimhyunkang/libyaml-rust)
### Game development

@ -20,6 +20,13 @@ def md_link(name, url):
"""
DATA = \
{
'kimhyunkang/libyaml-rust': {
"url": 'https://github.com/kimhyunkang/libyaml-rust',
"descr": md_link('libyaml', 'http://pyyaml.org/wiki/LibYAML') + ' bindings',
"travis_url": 'https://travis-ci.org/kimhyunkang/libyaml-rust',
"travis_badge": 'https://travis-ci.org/kimhyunkang/libyaml-rust.svg?branch=master',
"unstable": True
},
'Rustless': {
"url": 'http://rustless.org/',
"descr": 'a REST-like API micro-framework inspired by ' + md_link('Grape', 'https://github.com/intridea/grape') + ' and ' + md_link('Hyper', 'https://github.com/hyperium/hyper'),
@ -665,6 +672,8 @@ add( '* XML', rows_stable, rows_unstable )
entry( ' * ', 'Florob/RustyXML', rows_stable, rows_unstable )
entry( ' * ', 'netvl/rust-xml', rows_stable, rows_unstable )
entry( ' * ', 'Ygg01/xml-air', rows_stable, rows_unstable )
add( '* YAML', rows_stable, rows_unstable )
entry( ' * ', 'kimhyunkang/libyaml-rust', rows_stable, rows_unstable )
add( '\n### Game development\n', rows_stable, rows_unstable )
entry( '* ', 'bbodi/rust-voxlap', rows_stable, rows_unstable )

Loading…
Cancel
Save