-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 933 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 933 Bytes
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
[package]
name = "iepub"
version = { workspace=true }
edition = { workspace = true }
license = { workspace = true }
description = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
keywords = { workspace = true }
rust-version = { workspace = true }
[dependencies]
zip = "6.0.0"
anyhow = "1.0.100"
quick-xml = { version = "0.38.3" }
ab_glyph = { version = "0.2.32", optional = true }
imageproc = { version = "0.25.0", optional = true}
serde_json = { version = "1.0.145", optional = true }
iepub-derive = { path = "../derive", version = "1.2.4" }
serde = { version = "1.0.228", features = ["derive"], optional = true }
image = { version = "0.25.8", default-features = false, features = ["jpeg"], optional = true }
[dev-dependencies]
reqwest = { version = "0.11", features = ["blocking"] }
[features]
no_nav=[]
cache=["dep:serde","dep:serde_json"]
cover = ["dep:ab_glyph","dep:image","dep:imageproc"]