repro 0.0.0

Support crate for cargo-repro, a tool for building and verifying Rust packages that are reproducible byte-for-byte using a Cargo-driven workflow.
Documentation
//! cargo repro: build and verify byte-for-byte reproducible Rust packages

#![forbid(unsafe_code)]
#![deny(
    warnings,
    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unused_import_braces,
    unused_qualifications
)]
#![doc(
    html_logo_url = "https://avatars3.githubusercontent.com/u/44121472",
    html_root_url = "https://docs.rs/cargo-repro/0.0.0"
)]

/// Start the utility
pub fn start() {
    println!("cargo repro: build and verify byte-for-byte reproducible Rust packages");
    println!();
    println!("WORK IN PROGRESS: This utility does not yet provide any functionality");
    println!("If you are interested in contributing, please see the GitHub issues:");
    println!();
    println!("    https://github.com/rust-secure-code/cargo-repro/issues");
    println!();
}