From 31d1451345125da980bc38603c9f17d0bbff8daf Mon Sep 17 00:00:00 2001 From: kud1ing Date: Thu, 20 Nov 2014 19:10:27 +0100 Subject: [PATCH] unstable --- README.md | 4 +++- UNSTABLE.md | 3 +++ generate_markdown_files.py | 12 +++++++++++- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index de2181e..eb212fc 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,9 @@ Only projects that are stable and useful to users are added. Projects that do no ### Database +* NoSQL + * RethinkDB + * [tomjakubowski/rethinkdb-rs](https://github.com/tomjakubowski/rethinkdb-rs) — [RethinkDB](http://www.rethinkdb.com) bindings [](https://travis-ci.org/tomjakubowski/rethinkdb-rs) * SQL * MySql * [blackbeam/rust-mysql-simple](https://github.com/blackbeam/rust-mysql-simple) — a native MySql client [](https://travis-ci.org/blackbeam/rust-mysql-simple) @@ -150,7 +153,6 @@ Only projects that are stable and useful to users are added. Projects that do no ### Testing * [BurntSushi/quickcheck](https://github.com/BurntSushi/quickcheck) — a Rust implementation of [QuickCheck](http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1) [](https://travis-ci.org/BurntSushi/quickcheck) -* [farcaller/shiny](https://github.com/farcaller/shiny) — a fancy syntax similar to ruby's rspec or Objective-C's kiwi [](https://travis-ci.org/farcaller/shiny) ### Web programming diff --git a/UNSTABLE.md b/UNSTABLE.md index 36497cd..fa911d6 100644 --- a/UNSTABLE.md +++ b/UNSTABLE.md @@ -48,6 +48,8 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful ### Database +* NoSQL + * RethinkDB * SQL * MySql * PostgreSql @@ -127,6 +129,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful ### Testing +* [farcaller/shiny](https://github.com/farcaller/shiny) — a fancy syntax similar to ruby's rspec or Objective-C's kiwi [](https://travis-ci.org/farcaller/shiny) ### Web programming diff --git a/generate_markdown_files.py b/generate_markdown_files.py index f182d21..8d84696 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -19,6 +19,12 @@ def md_link(name, url): """ DATA = \ { + 'tomjakubowski/rethinkdb-rs': { + "url": 'https://github.com/tomjakubowski/rethinkdb-rs', + "descr": md_link('RethinkDB', 'http://www.rethinkdb.com') + ' bindings', + "travis_url": 'https://travis-ci.org/tomjakubowski/rethinkdb-rs', + "travis_badge": 'https://travis-ci.org/tomjakubowski/rethinkdb-rs.svg?branch=master', + }, 'alexcrichton/flate2-rs': { "url": 'https://github.com/alexcrichton/flate2-rs', "descr": md_link('miniz', 'https://code.google.com/p/miniz/') + ' bindings', @@ -313,7 +319,8 @@ DATA = \ "url": "https://github.com/farcaller/shiny", "descr": "a fancy syntax similar to ruby's rspec or Objective-C's kiwi", "travis_url": "https://travis-ci.org/farcaller/shiny", - "travis_badge": "https://travis-ci.org/farcaller/shiny.svg?branch=master" + "travis_badge": "https://travis-ci.org/farcaller/shiny.svg?branch=master", + "unstable": True }, "chris-morgan/rust-http": { "url": "https://github.com/chris-morgan/rust-http", @@ -615,6 +622,9 @@ entry( '* ', 'seb-m/common.rs', rows_stable, rows_unstable ) entry( '* ', 'sfackler/rust-openssl', rows_stable, rows_unstable ) add( '\n### Database\n', rows_stable, rows_unstable ) +add( '* NoSQL', rows_stable, rows_unstable ) +add( ' * RethinkDB', rows_stable, rows_unstable ) +entry( ' * ', 'tomjakubowski/rethinkdb-rs', rows_stable, rows_unstable ) add( '* SQL', rows_stable, rows_unstable ) add( ' * MySql', rows_stable, rows_unstable ) entry( ' * ', 'blackbeam/rust-mysql-simple', rows_stable, rows_unstable )