-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
34 lines (30 loc) · 900 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
[package]
name = "mdbook-tera"
version = "0.5.1"
authors = ["avitex <[email protected]>"]
edition = "2018"
description = "Tera preprocessor for mdBook"
keywords = ["mdbook", "tera", "preprocessor"]
categories = ["command-line-utilities", "template-engine"]
documentation = "https://docs.rs/mdbook-tera"
homepage = "https://github.com/avitex/mdbook-tera"
repository = "https://github.com/avitex/mdbook-tera"
license = "MIT"
readme = "README.md"
include = ["src/**/*", "README.md", "LICENSE", "Cargo.lock", "Cargo.toml"]
[features]
default = ["toml", "json"]
json = ["serde_json"]
[[bin]]
name = "mdbook-tera"
required-features = ["toml", "json"]
[dependencies]
clap = "~3"
serde = "~1"
anyhow = "~1"
semver = "~1"
tera = "^1.5.0"
globwalk = "0.8"
mdbook = { version = "0.4", default-features = false }
toml = { version = "~0.5", optional = true }
serde_json = { version = "~1", optional = true }