diff --git a/README.md b/README.md
index 1356baf..e62ad76 100644
--- a/README.md
+++ b/README.md
@@ -170,6 +170,7 @@ See also [http://arewewebyet.com/](http://arewewebyet.com/)
* Server
* [Iron](http://ironframework.io/) — a Middleware-based server framework [](https://travis-ci.org/iron/iron)
* [Nickel](http://nickel.rs/) — inspired by [Express](http://expressjs.com/) [](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) [](https://travis-ci.org/rustless/rustless)
## Resources
diff --git a/generate_markdown_files.py b/generate_markdown_files.py
index ec68c99..f6bd18f 100644
--- a/generate_markdown_files.py
+++ b/generate_markdown_files.py
@@ -20,6 +20,13 @@ def md_link(name, url):
"""
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': {
"url": 'https://github.com/tomjakubowski/rethinkdb-rs',
"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( ' * ', 'Iron', rows_stable, rows_unstable )
entry( ' * ', 'Nickel', rows_stable, rows_unstable )
+entry( ' * ', 'Rustless', rows_stable, rows_unstable )
add( '\n## Resources\n', rows_stable, rows_unstable )
entry( '* ', 'Rust by Example', rows_stable, rows_unstable )