From 750a15f64e48dd2d4491526d3322150f08a10444 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Sun, 12 Oct 2014 17:44:40 +0200 Subject: [PATCH] add Teepee to unstable --- UNSTABLE.md | 1 + generate_markdown_files.py | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/UNSTABLE.md b/UNSTABLE.md index 823a58c..ad03456 100644 --- a/UNSTABLE.md +++ b/UNSTABLE.md @@ -125,6 +125,7 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful See also [http://arewewebyet.com/](http://arewewebyet.com/) * Core + * [Teepee](http://teepee.rs/) — [](https://travis-ci.org/teepee/teepee) * Client * Server diff --git a/generate_markdown_files.py b/generate_markdown_files.py index 5f2ccfa..fc7ca42 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -242,6 +242,12 @@ DATA = \ "travis_url": "https://travis-ci.org/chris-morgan/rust-http", "travis_badge": "https://travis-ci.org/chris-morgan/rust-http.svg?branch=master" }, + "Teepee": { + "url": "http://teepee.rs/", + "travis_url": "https://travis-ci.org/teepee/teepee", + "travis_badge": "https://travis-ci.org/teepee/teepee.svg?branch=master", + 'unstable': True + }, "hyperium/hyper": { "url": "https://github.com/hyperium/hyper", "travis_url": "https://travis-ci.org/hyperium/hyper", @@ -606,6 +612,7 @@ add( 'See also ' + md_link('http://arewewebyet.com/', 'http://arewewebyet.com/ add( '* Core', rows_stable, rows_unstable ) entry( ' * ', 'chris-morgan/rust-http', rows_stable, rows_unstable ) entry( ' * ', 'hyperium/hyper', rows_stable, rows_unstable ) +entry( ' * ', 'Teepee', rows_stable, rows_unstable ) add( '* Client', rows_stable, rows_unstable ) entry( ' * ', 'carllerche/curl-rust', rows_stable, rows_unstable ) entry( ' * ', 'vhbit/curl-rs', rows_stable, rows_unstable )