forked from kivikakk/comrak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 922 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 = "comrak"
version = "0.2.8"
authors = ["Ashe Connor <[email protected]>"]
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
documentation = "https://docs.rs/comrak"
homepage = "https://github.com/kivikakk/comrak"
repository = "https://github.com/kivikakk/comrak"
readme = "README.md"
keywords = ["markdown", "commonmark"]
license = "BSD-2-Clause"
categories = ["text-processing", "parsing", "command-line-utilities"]
[badges]
travis-ci = { repository = "kivikakk/comrak" }
[profile.release]
lto = true
[[bin]]
name = "comrak"
required-features = ["clap"]
doc = false
[dependencies]
typed-arena = "1.3"
regex = "0.2"
lazy_static = "1.0"
entities = "1.0"
unicode_categories = "0.1"
clap = { version = "2.29", optional = true }
twoway = "0.1"
pest = "1.0"
pest_derive = "1.0"
[dev-dependencies]
timebomb = "0.1.2"
[features]
default = ["clap"]
benchmarks = []