check-versions 0.1.0

Simple crate for ensuring that version numbers in README files are updated when the crate version changes.
Documentation

check-versions

The check-versions crate is a simple crate that will help you remember to update the versions numbers in your README.md file.

Usage

Add this to your Cargo.toml:

[dev-dependencies]
check-versions = "0.1"

Then create a tests/check-versions.rs with:

#[macro_use]
extern crate check_versions;

#[test]
fn test_readme_deps() {
    assert_markdown_deps_updated!("README.md");
}

This test will ensure that the dependencies mentioned in your README.md file is kept in sync with your crate version.

License

Textwrap can be distributed according to the MIT license. Contributions will be accepted under the same license.