-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (51 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
58 lines (51 loc) · 1.71 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "paperback"
version = "0.8.5"
description = "An accessible, light-weight, fast ebook and document reader"
license = "MIT"
repository = "https://github.com/trypsynth/paperback"
edition = "2024"
rust-version = "1.87.0"
[workspace]
members = ["xtask"]
[dependencies]
anyhow = "1.0.102"
base64 = "0.22.1"
bitflags = "2.11.0"
cfb = "0.14.0"
ego-tree = "0.11.0"
encoding_rs = "0.8.35"
libchm = "0.1.0"
live-region = "0.1.4"
office-crypto = "0.2.0"
pdfium = { git = "https://github.com/aryanchoudharypro/PDFium-rs", branch = "feature/tagged-pdf-support" }
percent-encoding = "2.3.2"
pulldown-cmark = { version = "0.13.3", default-features = false, features = ["html"] }
regex = "1.12.3"
roman = "0.1"
roxmltree = "0.21.1"
rtf-parser = "0.4.2"
scraper = "0.26.0"
serde = { version = "1.0.228", default-features = false, features = ["derive", "std"] }
sha1 = "0.11.0"
ureq = { version = "3.3.0", default-features = false, features = ["json", "rustls"] }
wxdragon = { version = "0.9.14", features = ["webview"] }
zip = { version = "8.4.0", default-features = false, features = ["deflate"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62.2", features = ["Win32_UI_Accessibility", "Win32_System_Com", "Win32_UI_WindowsAndMessaging", "Win32_Foundation", "Win32_System_Ole", "Win32_System_Variant"] }
[build-dependencies]
embed-manifest = "1.5.0"
flate2 = { version = "1.1.9", default-features = false }
tar = "0.4.45"
ureq = { version = "3.3.0", default-features = false, features = ["rustls"] }
winres = "0.1.12"
[dev-dependencies]
rstest = "0.26.1"
[profile.release]
strip = true
opt-level = "z"
lto = true
panic = "abort"
codegen-units = 1
[patch.crates-io]
wxdragon = { git = "https://github.com/AllenDang/wxDragon" }