mirror of
https://github.com/rust-unofficial/awesome-rust.git
synced 2025-08-28 22:44:31 -04:00
unstable
This commit is contained in:
parent
9fc3c84c48
commit
31d1451345
3 changed files with 17 additions and 2 deletions
|
@ -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 [<img src="https://travis-ci.org/tomjakubowski/rethinkdb-rs.svg?branch=master">](https://travis-ci.org/tomjakubowski/rethinkdb-rs)
|
||||
* SQL
|
||||
* MySql
|
||||
* [blackbeam/rust-mysql-simple](https://github.com/blackbeam/rust-mysql-simple) — a native MySql client [<img src="https://travis-ci.org/blackbeam/rust-mysql-simple.svg?branch=master">](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) [<img src="https://travis-ci.org/BurntSushi/quickcheck.svg?branch=master">](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 [<img src="https://travis-ci.org/farcaller/shiny.svg?branch=master">](https://travis-ci.org/farcaller/shiny)
|
||||
|
||||
### Web programming
|
||||
|
||||
|
|
|
@ -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 [<img src="https://travis-ci.org/farcaller/shiny.svg?branch=master">](https://travis-ci.org/farcaller/shiny)
|
||||
|
||||
### Web programming
|
||||
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue