-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (28 loc) · 918 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
[package]
name = "docket"
version = "0.7.1"
description = "Simple markdown to HTML documentation rendering"
readme = "README.md"
license-file = "LICENSE"
documentation = "https://docs.rs/crate/docket/latest"
homepage = "https://iwillspeak.github.io/docket"
repository = "https://github.com/iwillspeak/docket"
authors = ["Will Speak <lithiumflame@gmail.com>"]
edition = "2021"
exclude = ["/docs/*", "/.vscode/*"]
[dependencies]
pulldown-cmark = { version= "0.9", default_features = false }
docopt = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
env_logger = "0.9"
syntect = { version = "5.0", optional = true }
once_cell = { version = "1.13", optional = true }
notify = { version = "4.0", optional = true }
[features]
default = [ "watch", "syntect-hl" ]
# File system watching
watch = [ "notify" ]
# Sytnax highlighting with syntect
syntect-hl = [ "once_cell", "syntect" ]