]> git.proxmox.com Git - rustc.git/blob - vendor/textwrap/Cargo.toml
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / textwrap / Cargo.toml
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 are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
11
12 [package]
13 edition = "2018"
14 name = "textwrap"
15 version = "0.15.0"
16 authors = ["Martin Geisler <martin@geisler.net>"]
17 exclude = [".github/", ".gitignore", "benches/", "examples/", "fuzz/", "images/"]
18 description = "Powerful library for word wrapping, indenting, and dedenting strings"
19 documentation = "https://docs.rs/textwrap/"
20 readme = "README.md"
21 keywords = ["text", "formatting", "wrap", "typesetting", "hyphenation"]
22 categories = ["text-processing", "command-line-interface"]
23 license = "MIT"
24 repository = "https://github.com/mgeisler/textwrap"
25 [package.metadata.docs.rs]
26 all-features = true
27
28 [[example]]
29 name = "hyphenation"
30 path = "examples/hyphenation.rs"
31 required-features = ["hyphenation"]
32
33 [[example]]
34 name = "termwidth"
35 path = "examples/termwidth.rs"
36 required-features = ["terminal_size"]
37
38 [[bench]]
39 name = "linear"
40 path = "benches/linear.rs"
41 harness = false
42
43 [[bench]]
44 name = "indent"
45 path = "benches/indent.rs"
46 harness = false
47 [dependencies.hyphenation]
48 version = "0.8.4"
49 features = ["embed_en-us"]
50 optional = true
51
52 [dependencies.smawk]
53 version = "0.3.1"
54 optional = true
55
56 [dependencies.terminal_size]
57 version = "0.1.17"
58 optional = true
59
60 [dependencies.unicode-linebreak]
61 version = "0.1.2"
62 optional = true
63
64 [dependencies.unicode-width]
65 version = "0.1.9"
66 optional = true
67 [dev-dependencies.criterion]
68 version = "0.3.5"
69
70 [dev-dependencies.lipsum]
71 version = "0.8.0"
72
73 [dev-dependencies.unic-emoji-char]
74 version = "0.9.0"
75
76 [dev-dependencies.version-sync]
77 version = "0.9.4"
78
79 [features]
80 default = ["unicode-linebreak", "unicode-width", "smawk"]
81 [target."cfg(unix)".dev-dependencies.termion]
82 version = "1.5.6"