forked from kivikakk/comrak
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (39 loc) · 1.18 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
[package]
name = "comrak"
version = "0.12.1"
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"]
exclude = ["/hooks/*", "/script/*", "/vendor/*", "/.travis.yml", "/Makefile", "/spec_out.txt"]
[profile.release]
lto = true
[[bin]]
name = "comrak"
required-features = ["clap", "syntect"]
doc = false
[dependencies]
typed-arena = "1.4.1"
regex = "1.0.1"
lazy_static = "1.0.1"
log = "0.4"
entities = "1.0.1"
unicode_categories = "0.1.1"
clap = { version = "2.32.0", optional = true }
twoway = "0.2"
pest = "2"
pest_derive = "2"
shell-words = "1.0"
syntect = { version = "4.6", optional = true, default-features = false, features = ["assets", "dump-load", "html", "regex-onig"] }
[dev-dependencies]
timebomb = "0.1.2"
propfuzz = "0.0.1"
[features]
default = ["clap", "syntect"]
[target.'cfg(not(windows))'.dependencies]
xdg = "^2.1"