-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (30 loc) · 879 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 = "gen-epub-book"
description = "Generate an ePub book from a simple plaintext descriptor"
repository = "https://github.com/nabijaczleweli/gen-epub-book.rs"
documentation = "https://rawcdn.githack.com/nabijaczleweli/gen-epub-book.rs/doc/gen_epub_book/index.html"
readme = "README.md"
keywords = ["generate", "ePub", "ebook", "e-book", "book"]
categories = ["encoding", "text-processing"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "2.3.2"
# Remember to also update in gen-epub-book.md
authors = ["nabijaczleweli <[email protected]>",
"nicohman <[email protected]>"]
[dependencies]
lazy_static = "1.1"
mime_guess = "1.8"
reqwest = "0.9"
chrono = "0.4"
regex = "1.0"
clap = "2.32"
url = "1.7"
zip = "0.4"
[dependencies.uuid]
version = "0.7"
features = ["v4"]
[[bin]]
name = "gen-epub-book"
test = false
doc = false