-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (55 loc) · 1.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "photobook-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
egui = { version = "0.30", features = ["persistence"] }
eframe = { version = "0.30", features = ["glow"] }
egui_extras = { version = "0.30", features = ["default", "all_loaders"] }
native-dialog = "0.7.0"
env_logger = "0.11.5"
image = { version = "0.25.4", features = ["jpeg", "png"] }
tokio = { version = "1.29.1", features = ["full", "rt-multi-thread"] }
once_cell = "1.18.0"
fast_image_resize = "5.1.0"
anyhow = "1.0.72"
flexi_logger = "0.29.6"
log = "0.4"
kamadak-exif = "0.6.1"
imagesize = "0.13.0"
backtrace = "0.3"
open = "5.0.0"
strum = "0.26.3"
strum_macros = "0.26.4"
chrono = { version = "0.4.31", features = ["serde"] }
indexmap = { version = "2.1.0", features = ["serde"] }
font-kit = "0.14.2"
egui_tiles = "0.11"
ab_glyph = "0.2.23"
rand = "0.8.5"
smol_egui_skia = { git = "https://github.com/RyanBluth/smol_egui_skia.git", branch = "main" }
skia-safe = "0.75"
thiserror = "2.0.6"
printpdf = { version = "0.7.0", features = ["embedded_images"] }
serde = "1.0.203"
serde_json = "1.0.118"
dirs = "5.0.1"
fxhash = "0.2.1"
toml = "0.8.15"
glob = "0.3.1"
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
profiling = { version = "1.0.16", default-features = false }
notify = "7.0.0"
num_cpus = "1.16.0"
taffy = "0.7.2"
[profile.dev.package."*"]
opt-level = 2
[profile.release]
# lto = "fat"
codegen-units = 1
panic = "abort"
[patch.crates-io]
egui = { git = "https://github.com/RyanBluth/egui.git", branch = "support-uppercase-image-ext", features = ["persistence"] }
eframe = { git = "https://github.com/RyanBluth/egui.git", branch = "support-uppercase-image-ext", features = ["glow"] }
egui_extras = { git = "https://github.com/RyanBluth/egui.git", branch = "support-uppercase-image-ext", features = ["default", "all_loaders"] }