1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "textwrap"
16version = "0.13.4"
17authors = ["Martin Geisler <martin@geisler.net>"]
18exclude = [".github/", ".gitignore", "benches/", "examples/", "fuzz/", "images/"]
19description = "Powerful library for word wrapping, indenting, and dedenting strings"
20documentation = "https://docs.rs/textwrap/"
21readme = "README.md"
22keywords = ["text", "formatting", "wrap", "typesetting", "hyphenation"]
23categories = ["text-processing", "command-line-interface"]
24license = "MIT"
25repository = "https://github.com/mgeisler/textwrap"
26[package.metadata.docs.rs]
27all-features = true
28
29[[bench]]
30name = "linear"
31path = "benches/linear.rs"
32harness = false
33[dependencies.hyphenation]
34version = "0.8"
35features = ["embed_en-us"]
36optional = true
37
38[dependencies.smawk]
39version = "0.3"
40optional = true
41
42[dependencies.terminal_size]
43version = "0.1"
44optional = true
45
46[dependencies.unicode-width]
47version = "0.1"
48optional = true
49[dev-dependencies.criterion]
50version = "0.3"
51
52[dev-dependencies.lipsum]
53version = "0.7"
54
55[dev-dependencies.unic-emoji-char]
56version = "0.9.0"
57
58[dev-dependencies.version-sync]
59version = "0.9"
60
61[features]
62default = ["unicode-width", "smawk"]
63[target."cfg(unix)".dev-dependencies.termion]
64version = "1.5"
65