1
0
mirror of https://github.com/rust-unofficial/awesome-rust.git synced 2025-01-03 05:10:17 +02:00

add arjantop/rust-bencode

This commit is contained in:
kud1ing 2015-01-08 20:19:46 +01:00
parent 882aa40041
commit d4e5a41669
3 changed files with 12 additions and 0 deletions

View File

@ -102,6 +102,8 @@ 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 [<img src="https://travis-ci.org/TyOverby/bincode.svg?branch=master">](https://travis-ci.org/TyOverby/bincode)
* Bencode
* [arjantop/rust-bencode](https://github.com/arjantop/rust-bencode) — [Bencode](http://en.wikipedia.org/wiki/Bencode) implementation in Rust [<img src="https://travis-ci.org/arjantop/rust-bencode.svg?branch=master">](https://travis-ci.org/arjantop/rust-bencode)
* 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)
* Character Encoding

View File

@ -84,6 +84,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful
### Encoding
* Bencode
* Cap'n Proto
* Character Encoding
* CSV

View File

@ -20,6 +20,13 @@ def md_link(name, url):
"""
DATA = \
{
'arjantop/rust-bencode': {
"url": 'https://github.com/arjantop/rust-bencode',
"descr": md_link('Bencode', 'http://en.wikipedia.org/wiki/Bencode') + ' implementation in Rust',
"travis_url": 'https://travis-ci.org/arjantop/rust-bencode',
"travis_badge": 'https://travis-ci.org/arjantop/rust-bencode.svg?branch=master',
"unstable": False
},
'mitsuhiko/redis-rs': {
"url": '',
"descr": md_link('Redis', 'http://redis.io') + ' library in Rust',
@ -760,6 +767,8 @@ entry( '* ', 'rust-lang/time', rows_stable, rows_unstable )
add( '\n### Encoding\n', rows_stable, rows_unstable )
entry( '* ', 'TyOverby/bincode', rows_stable, rows_unstable )
add( '* Bencode', rows_stable, rows_unstable )
entry( '* ', 'arjantop/rust-bencode', 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 )