sable-markdown/Cargo.toml@main
raw
1[package]
2name = "sable-markdown"
3version = "0.1.0"
4edition = "2024"
5
6authors = ["Evgenii Lepikhin <[email protected]>"]
7license = "MIT"
8
9workspace = ".."
10
11[features]
12default = ["parser", "render", "highlighting-inkjet"]
13
14parser = []
15render = []
16
17highlighting-inkjet = ["dep:inkjet"]
18highlighting-syntect = ["dep:syntect"]
19
20[dependencies]
21entities.workspace = true
22heck.workspace = true
23nom.workspace = true
24pretty.workspace = true
25slug.workspace = true
26unicode_categories.workspace = true
27
28inkjet = { workspace = true, optional = true }
29syntect = { workspace = true, optional = true }
30
31[dev-dependencies]
32rstest.workspace = true
33