Use docs.rs

This commit is contained in:
Alexandre Bury 2017-11-17 11:46:29 -08:00
parent fefed79303
commit 60a9c47b57
2 changed files with 1 additions and 12 deletions

View File

@ -9,7 +9,7 @@ Cursive is a TUI (Text User Interface) library for rust. It is currently based o
It allows you to build rich user interfaces for terminal applications. It allows you to build rich user interfaces for terminal applications.
# [Documentation](http://gyscos.github.io/Cursive/cursive/index.html) # [Documentation](http://docs.rs/cursive)
It is designed to be safe and easy to use: It is designed to be safe and easy to use:

View File

@ -1,11 +0,0 @@
set -e
cargo doc --no-deps
FROM=$(git rev-parse --short HEAD)
git checkout gh-pages
git fetch && git rebase origin/gh-pages
rsync -a target/doc/ .
git add .
git commit -m "Update doc for ${FROM}"
# git push
git checkout master