-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 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
[package]
name = "unbook"
version = "0.9.1"
edition = "2021"
license = "CC0-1.0"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
mimalloc = { version = "0.1", default-features = false } # Turn off the default secure mode
log = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
hex = "0.4"
fastrand = "2"
zip = { version = "2", default-features = false, features = ["deflate"] }
lol_html = "1.2"
base64 = "0.22"
indoc = "2"
regex = { version = "1", default-features = false } # We don't much performance or Unicode for CSS adjustments
roxmltree = "0.20"
lazy_static = "1"
infer = { version = "0.16", default-features = false }
mobi = "0.8"
once_cell = "1"
csscolorparser = "0.6"
[profile.dev]
# Reduce debug rebuild time
# https://github.com/rust-gamedev/wg/issues/50#issuecomment-527160611
debug = false
# Optimize our dependencies (but not our own crate to avoid long rebuild times)
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1