forked from Michael-F-Bryan/mdbook-epub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.02 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
[package]
authors = ["Michael Bryan <michaelfbryan@gmail.com>"]
description = "An EPUB renderer for mdbook."
name = "mdbook-epub"
version = "0.4.25"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Michael-F-Bryan/mdbook-epub"
documentation = "https://docs.rs/mdbook-epub"
keywords = ["epub", "mdbook", "documentation"]
categories = ["command-line-interface", "development-tools"]
edition = "2021"
[package.metadata.release]
sign-commit = true
[badges]
travis-ci = { repository = "Michael-F-Bryan/mdbook-epub", branch = "master" }
maintenance = { status = "actively-developed" }
[[bin]]
name = "mdbook-epub"
doc = false
[dependencies]
epub-builder = "0.5"
thiserror = "1.0"
pulldown-cmark = "0.9"
semver = "0.11"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
structopt = "0.3"
mime_guess = "2.0"
env_logger = "0.10"
log = "0.4"
mdbook = { version = "0.4.25", default-features = false }
handlebars = "4.3"
toml = "0.5"
html_parser = "0.6.2"
[dev-dependencies]
tempdir = "0.3.7"
epub = "1.2"
serial_test = "0.5"