Skip to main content

max / docengine

752 B · 26 lines History Blame Raw
1 [package]
2 name = "docengine"
3 version = "0.3.0"
4 edition = "2021"
5
6 [features]
7 default = []
8 doc-loader = ["dep:regex", "dep:tracing"]
9 directives = ["dep:regex-lite"]
10 mentions = ["dep:regex-lite"]
11 quotes = ["dep:regex-lite", "dep:uuid"]
12 frontmatter = ["dep:toml", "dep:tracing"]
13 media-urls = ["dep:regex-lite"]
14 full = ["doc-loader", "directives", "mentions", "quotes", "frontmatter", "media-urls"]
15
16 [dependencies]
17 pulldown-cmark = "0.12"
18 ammonia = "4"
19 serde = { version = "1", features = ["derive"] }
20
21 regex = { version = "1", optional = true }
22 regex-lite = { version = "0.1", optional = true }
23 uuid = { version = "1", features = ["serde", "v4"], optional = true }
24 toml = { version = "0.8", optional = true }
25 tracing = { version = "0.1", optional = true }
26