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