aboutsummaryrefslogtreecommitdiff
path: root/textwrap/Cargo.toml
blob: 9d82ca5857126ac922b90151919ec7d8da058985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "textwrap"
version = "0.11.0"
authors = ["Martin Geisler <martin@geisler.net>"]
description = """
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 = "https://docs.rs/textwrap/"
repository = "https://github.com/mgeisler/textwrap"
readme = "README.md"
keywords = ["text", "formatting", "wrap", "typesetting", "hyphenation"]
categories = ["text-processing", "command-line-interface"]
license = "MIT"
exclude = [".dir-locals.el"]

[package.metadata.docs.rs]
all-features = true

[badges]
travis-ci = { repository = "mgeisler/textwrap" }
appveyor = { repository = "mgeisler/textwrap" }
codecov = { repository = "mgeisler/textwrap" }

[dependencies]
unicode-width = "0.1.3"
term_size = { version = "0.3.0", optional = true }
hyphenation = { version = "0.7.1", optional = true, features = ["embed_all"] }

[dev-dependencies]
lipsum = "0.6"
rand = "0.6"
rand_xorshift = "0.1"
version-sync = "0.6"