-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
29 lines (27 loc) · 826 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
[package]
authors = ["Hollow Man <[email protected]>"]
categories = ["text-processing", "command-line-interface"]
description = "A backend for mdBook written in Rust for generating PDF based on headless chrome and Chrome DevTools Protocol"
edition = "2021"
homepage = "https://hollowmansblog.wordpress.com/2022/01/30/mdbook-pdf-a-mdbook-backend-for-generating-pdf-files/"
keywords = ["book", "mdbook", "rustbook", "pdf"]
license = "GPL-3.0"
name = "mdbook-pdf"
readme = "README.md"
repository = "https://github.com/HollowMan6/mdbook-pdf"
version = "0.1.10"
include = [
"**/*.rs",
"Cargo.toml",
]
[dependencies]
env_logger = "0"
lazy_static = "1"
mdbook = "0"
headless_chrome = "1"
regex = "1"
serde = "1"
serde_derive = "1"
[features]
# Enables auto fetching chromium support.
fetch = ["headless_chrome/fetch"]