cursive 0.0.1

A TUI library based on ncurses-rs
Documentation
1
2
3
4
5
6
7
8
9
10
set -e

cargo doc
FROM=$(git rev-parse --short HEAD)
git checkout gh-pages
rsync -a target/doc/ .
git add .
git commit -m "Update doc for ${FROM}"
# git push
git checkout master