1
0
Fork 0
mirror of https://github.com/rust-unofficial/awesome-rust.git synced 2024-11-27 11:44:52 -05:00
This commit is contained in:
kud1ing 2014-12-13 10:36:39 +01:00
parent 872802fa85
commit bc9a54e070
2 changed files with 9 additions and 0 deletions

View file

@ -80,6 +80,7 @@ Only projects that are stable and useful to users are added. Projects that do no
### Encoding ### Encoding
* [TyOverby/bincode](https://github.com/TyOverby/bincode) — a binary encoder/decoder in Rust [<img src="https://travis-ci.org/TyOverby/bincode.svg?branch=master">](https://travis-ci.org/TyOverby/bincode)
* Cap'n Proto * Cap'n Proto
* [dwrensha/capnproto-rust](https://github.com/dwrensha/capnproto-rust) — [<img src="https://travis-ci.org/dwrensha/capnproto-rust.svg?branch=master">](https://travis-ci.org/dwrensha/capnproto-rust) * [dwrensha/capnproto-rust](https://github.com/dwrensha/capnproto-rust) — [<img src="https://travis-ci.org/dwrensha/capnproto-rust.svg?branch=master">](https://travis-ci.org/dwrensha/capnproto-rust)
* Character Encoding * Character Encoding

View file

@ -20,6 +20,13 @@ def md_link(name, url):
""" """
DATA = \ DATA = \
{ {
'TyOverby/bincode': {
"url": 'https://github.com/TyOverby/bincode',
"descr": 'a binary encoder/decoder in Rust',
"travis_url": 'https://travis-ci.org/TyOverby/bincode',
"travis_badge": 'https://travis-ci.org/TyOverby/bincode.svg?branch=master',
"unstable": False
},
'kimhyunkang/libyaml-rust': { 'kimhyunkang/libyaml-rust': {
"url": 'https://github.com/kimhyunkang/libyaml-rust', "url": 'https://github.com/kimhyunkang/libyaml-rust',
"descr": md_link('libyaml', 'http://pyyaml.org/wiki/LibYAML') + ' bindings', "descr": md_link('libyaml', 'http://pyyaml.org/wiki/LibYAML') + ' bindings',
@ -651,6 +658,7 @@ add( ' * Sqlite', rows_stable, rows_unstable )
entry( ' * ', 'linuxfood/rustsqlite', rows_stable, rows_unstable ) entry( ' * ', 'linuxfood/rustsqlite', rows_stable, rows_unstable )
add( '\n### Encoding\n', rows_stable, rows_unstable ) add( '\n### Encoding\n', rows_stable, rows_unstable )
entry( '* ', 'TyOverby/bincode', rows_stable, rows_unstable )
add( '* Cap\'n Proto', rows_stable, rows_unstable ) add( '* Cap\'n Proto', rows_stable, rows_unstable )
entry( ' * ', 'dwrensha/capnproto-rust', rows_stable, rows_unstable ) entry( ' * ', 'dwrensha/capnproto-rust', rows_stable, rows_unstable )
add( '* Character Encoding', rows_stable, rows_unstable ) add( '* Character Encoding', rows_stable, rows_unstable )