-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 1010 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
[package]
name = "json-book"
version = "0.1.1"
authors = ["Руслан Глазков <[email protected]>"]
description = "Book format optimized for small screens, an alternaive for the XML-based FB2"
readme = "README.md"
homepage = "https://github.com/r-glazkov/json-book"
repository = "https://github.com/r-glazkov/json-book"
keywords = ["book", "book-format", "json-book", "fb2"]
categories = ["parser-implementations"]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
fb2 = { version = "0.4", optional = true }
language-tags = { version = "0.3", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
url = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
[dev-dependencies]
boon = "0.6"
quick-xml = { version = "0.36", features = ["serialize"] }
serde_json = "1"
[features]
fb2 = ["dep:fb2"]