textwrap 0.11.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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: rust

rust:
  - stable
  - beta
  - nightly
  - 1.22.0

cache: cargo

script:
  - cargo build --verbose --all-features
  - cargo test --verbose --all-features

matrix:
  allow_failures:
    - rust: nightly