From 882aa40041392f698df54a5bc964d8967e3c43aa Mon Sep 17 00:00:00 2001 From: kud1ing Date: Sun, 21 Dec 2014 19:28:41 +0100 Subject: [PATCH] add mitsuhiko/redis-rs --- README.md | 2 ++ UNSTABLE.md | 1 + generate_markdown_files.py | 9 +++++++++ 3 files changed, 12 insertions(+) diff --git a/README.md b/README.md index b1f2dfc..b8c493d 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,8 @@ Only projects that are stable and useful to users are added. Projects that do no ### Database * NoSQL + * Redis + * [mitsuhiko/redis-rs]() — [Redis](http://redis.io) library in Rust [](https://travis-ci.org/mitsuhiko/redis-rs) * RethinkDB * SQL * MySql diff --git a/UNSTABLE.md b/UNSTABLE.md index c60ae9a..d5ba41f 100644 --- a/UNSTABLE.md +++ b/UNSTABLE.md @@ -71,6 +71,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful ### Database * NoSQL + * Redis * RethinkDB * [tomjakubowski/rethinkdb-rs](https://github.com/tomjakubowski/rethinkdb-rs) — [RethinkDB](http://www.rethinkdb.com) bindings [](https://travis-ci.org/tomjakubowski/rethinkdb-rs) * SQL diff --git a/generate_markdown_files.py b/generate_markdown_files.py index d41cd08..bfc0a52 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -20,6 +20,13 @@ def md_link(name, url): """ DATA = \ { + 'mitsuhiko/redis-rs': { + "url": '', + "descr": md_link('Redis', 'http://redis.io') + ' library in Rust', + "travis_url": 'https://travis-ci.org/mitsuhiko/redis-rs', + "travis_badge": 'https://travis-ci.org/mitsuhiko/redis-rs.svg?branch=master', + "unstable": False + }, 'cyndis/qmlrs': { "url": 'https://github.com/cyndis/qmlrs', "descr": md_link('QtQuick', 'http://doc.qt.io') + ' bindings', @@ -735,6 +742,8 @@ entry( '* ', 'sfackler/rust-openssl', rows_stable, rows_unstable ) add( '\n### Database\n', rows_stable, rows_unstable ) add( '* NoSQL', rows_stable, rows_unstable ) +add( ' * Redis', rows_stable, rows_unstable ) +entry( ' * ', 'mitsuhiko/redis-rs', rows_stable, rows_unstable ) add( ' * RethinkDB', rows_stable, rows_unstable ) entry( ' * ', 'tomjakubowski/rethinkdb-rs', rows_stable, rows_unstable ) add( '* SQL', rows_stable, rows_unstable )