mirror of
https://github.com/rust-unofficial/awesome-rust.git
synced 2024-11-27 11:44:52 -05:00
add Rustless
This commit is contained in:
parent
7abe9da97a
commit
b9eca9a4f6
2 changed files with 9 additions and 0 deletions
|
@ -170,6 +170,7 @@ See also [http://arewewebyet.com/](http://arewewebyet.com/)
|
||||||
* Server
|
* Server
|
||||||
* [Iron](http://ironframework.io/) — a Middleware-based server framework [<img src="https://travis-ci.org/iron/iron.svg?branch=master">](https://travis-ci.org/iron/iron)
|
* [Iron](http://ironframework.io/) — a Middleware-based server framework [<img src="https://travis-ci.org/iron/iron.svg?branch=master">](https://travis-ci.org/iron/iron)
|
||||||
* [Nickel](http://nickel.rs/) — inspired by [Express](http://expressjs.com/) [<img src="https://travis-ci.org/nickel-org/nickel.rs.svg?branch=master">](https://travis-ci.org/nickel-org/nickel.rs)
|
* [Nickel](http://nickel.rs/) — inspired by [Express](http://expressjs.com/) [<img src="https://travis-ci.org/nickel-org/nickel.rs.svg?branch=master">](https://travis-ci.org/nickel-org/nickel.rs)
|
||||||
|
* [Rustless](http://rustless.org/) — a REST-like API micro-framework inspired by[Grape](https://github.com/intridea/grape) and [Hyper](https://github.com/hyperium/hyper) [<img src="https://travis-ci.org/rustless/rustless.svg?branch=master">](https://travis-ci.org/rustless/rustless)
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,13 @@ def md_link(name, url):
|
||||||
"""
|
"""
|
||||||
DATA = \
|
DATA = \
|
||||||
{
|
{
|
||||||
|
'Rustless': {
|
||||||
|
"url": 'http://rustless.org/',
|
||||||
|
"descr": 'a REST-like API micro-framework inspired by' + md_link('Grape', 'https://github.com/intridea/grape') + ' and ' + md_link('Hyper', 'https://github.com/hyperium/hyper'),
|
||||||
|
"travis_url": 'https://travis-ci.org/rustless/rustless',
|
||||||
|
"travis_badge": 'https://travis-ci.org/rustless/rustless.svg?branch=master',
|
||||||
|
"unstable": False
|
||||||
|
},
|
||||||
'tomjakubowski/rethinkdb-rs': {
|
'tomjakubowski/rethinkdb-rs': {
|
||||||
"url": 'https://github.com/tomjakubowski/rethinkdb-rs',
|
"url": 'https://github.com/tomjakubowski/rethinkdb-rs',
|
||||||
"descr": md_link('RethinkDB', 'http://www.rethinkdb.com') + ' bindings',
|
"descr": md_link('RethinkDB', 'http://www.rethinkdb.com') + ' bindings',
|
||||||
|
@ -745,6 +752,7 @@ add( '* Server', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'erickt/rust-mongrel2', rows_stable, rows_unstable )
|
entry( ' * ', 'erickt/rust-mongrel2', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'Iron', rows_stable, rows_unstable )
|
entry( ' * ', 'Iron', rows_stable, rows_unstable )
|
||||||
entry( ' * ', 'Nickel', rows_stable, rows_unstable )
|
entry( ' * ', 'Nickel', rows_stable, rows_unstable )
|
||||||
|
entry( ' * ', 'Rustless', rows_stable, rows_unstable )
|
||||||
|
|
||||||
add( '\n## Resources\n', rows_stable, rows_unstable )
|
add( '\n## Resources\n', rows_stable, rows_unstable )
|
||||||
entry( '* ', 'Rust by Example', rows_stable, rows_unstable )
|
entry( '* ', 'Rust by Example', rows_stable, rows_unstable )
|
||||||
|
|
Loading…
Reference in a new issue