Skip to content

Instantly share code, notes, and snippets.

@BartMassey
BartMassey / crate-release-checklist.md
Created November 17, 2021 19:14
Rust Crate Release Checklist

Crate Release Checklist

First published release

  • Add Rustdoc root to the crate root

      #![doc(html_root_url = "https://docs.rs/<crate>/<version>")]
    

    (where <crate> is the crate name and <version> is the version name)