#!/usr/bin/env bash # remove old docs rm -rf ./docs # don't want dependencies cargo doc --no-deps --document-private-items # magic..? echo "" > target/doc/index.html # copy to docs cp -r target/doc ./docs