nanomsg 0.4.0

A high-level, Rust idiomatic wrapper around nanomsg.
Documentation
#!/bin/bash

rev=$(git rev-parse --short HEAD)

cd target/doc

git init
git config user.name "Daniel Fagnan"
git config user.email "dnfagnan@gmail.com"

git remote add upstream "https://$GH_TOKEN@github.com/thehydroimpulse/nanomsg.rs.git"
git fetch upstream && git reset upstream/gh-pages

touch .

git add -A .
git commit -m "rebuild pages at ${rev}"
git push -q upstream HEAD:gh-pages