forked from jugglerchris/rust-html2text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 780 Bytes
/
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
[package]
name = "html2text"
version = "0.3.1"
authors = ["Chris Emerson <github@mail.nosreme.org>"]
description = "Render HTML as plain text."
repository = "https://github.com/jugglerchris/rust-html2text/"
readme = "README.md"
documentation = "https://docs.rs/html2text/"
edition = "2018"
keywords = ["html", "text"]
license = "MIT"
[dependencies]
html5ever = "0.25.0"
unicode-width = "0.1.5"
backtrace = { version = "0.3", optional=true }
markup5ever_rcdom = "0.1.0"
[features]
html_trace = []
html_trace_bt = ["backtrace"]
default = []
ansi_colours = []
[[example]]
name = "html2term"
path = "examples/html2term.rs"
[[example]]
name = "html2text"
path = "examples/html2text.rs"
[dev-dependencies]
argparse = "0.2.2"
[target.'cfg(unix)'.dev-dependencies]
termion = "1.5"