forked from mgeisler/textwrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (37 loc) · 1.24 KB
/
Cargo.toml
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
39
40
41
42
43
44
[package]
name = "textwrap"
version = "0.13.2"
authors = ["Martin Geisler <martin@geisler.net>"]
description = "Powerful library for word wrapping, indenting, and dedenting strings"
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"
edition = "2018"
exclude = [".github/", ".gitignore", "benches/", "examples/", "fuzz/", "images/"]
[package.metadata.docs.rs]
all-features = true
[badges]
travis-ci = { repository = "mgeisler/textwrap" }
appveyor = { repository = "mgeisler/textwrap" }
codecov = { repository = "mgeisler/textwrap" }
[[bench]]
name = "linear"
harness = false
path = "benches/linear.rs"
[features]
default = ["unicode-width", "smawk"]
[dependencies]
smawk = { version = "0.3", optional = true }
unicode-width = { version= "0.1", optional = true }
terminal_size = { version = "0.1", optional = true }
hyphenation = { version = "0.8", optional = true, features = ["embed_en-us"] }
[dev-dependencies]
lipsum = "0.7"
version-sync = "0.9"
criterion = "0.3"
unic-emoji-char = "0.9.0"
[target.'cfg(unix)'.dev-dependencies]
termion = "1.5"