textwrap 0.6.0

Textwrap is a small 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
environment:
  matrix:
  - TOOLCHAIN: 1.8.0
    FEATURES: ""
  - TOOLCHAIN: stable
    FEATURES: ""
  - TOOLCHAIN: beta
    FEATURES: ""
  - TOOLCHAIN: nightly
    FEATURES: ""

  - TOOLCHAIN: 1.13.0
    FEATURES: "hyphenation"
  - TOOLCHAIN: stable
    FEATURES: "hyphenation"
  - TOOLCHAIN: beta
    FEATURES: "hyphenation"
  - TOOLCHAIN: nightly
    FEATURES: "hyphenation"

matrix:
  allow_failures:
    - TOOLCHAIN: nightly

install:
  - ps: Start-FileDownload 'https://static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe'
  - rustup-init.exe -y --default-toolchain %TOOLCHAIN%
  - set PATH=%PATH%;%USERPROFILE%\.cargo\bin

build_script:
  - cargo build --verbose --features "%FEATURES%"

test_script:
  - cargo test --verbose --features "%FEATURES%"

cache:
  - '%USERPROFILE%\.cargo'
  - target