-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
41 lines (34 loc) · 831 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
39
40
41
[package]
name = "html2text"
version = "0.6.0"
authors = ["Chris Emerson <[email protected]>"]
description = "Render HTML as plain text."
repository = "https://github.com/jugglerchris/rust-html2text/"
readme = "README.md"
documentation = "https://docs.rs/html2text/"
edition = "2018"
rust-version = "1.60"
keywords = ["html", "text"]
license = "MIT"
[dependencies]
html5ever = "0.26.0"
markup5ever = "0.11.0"
tendril = "0.4"
xml5ever = "0.17"
unicode-width = "0.1.5"
backtrace = { version = "0.3", optional=true }
[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"