diff --git a/README.md b/README.md index 35c3a0a..8327f59 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ Only projects that are stable and useful to users are added. Projects that do no ### Encoding +* [TyOverby/bincode](https://github.com/TyOverby/bincode) — a binary encoder/decoder in Rust [](https://travis-ci.org/TyOverby/bincode) * Cap'n Proto * [dwrensha/capnproto-rust](https://github.com/dwrensha/capnproto-rust) — [](https://travis-ci.org/dwrensha/capnproto-rust) * Character Encoding diff --git a/generate_markdown_files.py b/generate_markdown_files.py index 7d489a3..c5756ad 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -20,6 +20,13 @@ def md_link(name, url): """ 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': { "url": 'https://github.com/kimhyunkang/libyaml-rust', "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 ) add( '\n### Encoding\n', rows_stable, rows_unstable ) +entry( '* ', 'TyOverby/bincode', rows_stable, rows_unstable ) add( '* Cap\'n Proto', rows_stable, rows_unstable ) entry( ' * ', 'dwrensha/capnproto-rust', rows_stable, rows_unstable ) add( '* Character Encoding', rows_stable, rows_unstable )