The check-versions
crate is a simple crate that will help you
remember to update the versions numbers in your README.md
file.
Add this to your Cargo.toml
:
toml
[dev-dependencies]
check-versions = "0.1"
Then create a tests/check-versions.rs
with:
```rust
extern crate check_versions;
fn testreadmedeps() { assertmarkdowndeps_updated!("README.md"); } ```
This test will ensure that the dependencies mentioned in your
README.md
file is kept in sync with your crate version.
Textwrap can be distributed according to the MIT license. Contributions will be accepted under the same license.