forked from pulldown-cmark/pulldown-cmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (45 loc) · 1.1 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
45
46
47
48
49
50
51
52
53
[package]
name = "pulldown-cmark"
version = "0.9.1"
authors = [ "Raph Levien <[email protected]>", "Marcus Klaas de Vries <[email protected]>" ]
license = "MIT"
description = "A pull parser for CommonMark"
repository = "https://github.com/raphlinus/pulldown-cmark"
keywords = ["markdown", "commonmark"]
categories = ["text-processing"]
edition = "2018"
readme = "README.md"
exclude = ["/third_party/**/*", "/tools/**/*", "/specs/**/*", "/fuzzer/**/*", "/azure-pipelines.yml"]
build = "build.rs"
[[bin]]
name = "pulldown-cmark"
required-features = ["getopts"]
doc = false
[[bench]]
name = "html_rendering"
harness = false
[[bench]]
name = "lib"
harness = false
[[bench]]
name = "markdown-it"
harness = false
[dependencies]
bitflags = "1.2"
unicase = "2.6"
memchr = "2.3"
getopts = { version = "0.2", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
html5ever = "0.25"
markup5ever_rcdom = "0.1"
lazy_static = "1.4"
tendril = "0.4"
criterion = "0.3"
regex = "1.3"
serde_json = "1.0.61"
bincode = "1.3.1"
[features]
default = ["getopts"]
gen-tests = []
simd = []