aboutsummaryrefslogtreecommitdiff
path: root/textwrap/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'textwrap/Cargo.toml')
-rw-r--r--textwrap/Cargo.toml38
1 files changed, 0 insertions, 38 deletions
diff --git a/textwrap/Cargo.toml b/textwrap/Cargo.toml
deleted file mode 100644
index 9d82ca5..0000000
--- a/textwrap/Cargo.toml
+++ /dev/null
@@ -1,38 +0,0 @@
-[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"