textwrap 0.12.0

Textwrap is a library for word wrapping, indenting, and dedenting strings. You can use it to format strings (such as help and error messages) for display in commandline applications. It is designed to be efficient and handle Unicode characters correctly.
Documentation
language: rust

rust:
  - stable
  - nightly

install:
  - cargo build --all-features --tests --examples
  - >
    if [[ $TRAVIS_RUST_VERSION == "nightly" ]]; then
        cargo build --all-features --benches
    fi

script:
  - cargo test --all-features