Function cargo_test_support::publish::validate_crate_contents
source · pub fn validate_crate_contents(
reader: impl Read,
expected_crate_name: &str,
expected_files: &[&str],
expected_contents: &[(&str, &str)]
)Expand description
Checks the contents of a .crate file.
expected_crate_nameshould be something likefoo-0.0.1.crate.expected_filesshould be a complete list of files in the crate (relative to expected_crate_name).expected_contentsshould be a list of(file_name, contents)tuples to validate the contents of the given file. Only the listed files will be checked (others will be ignored).