-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (49 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
59 lines (49 loc) · 1.72 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
59
[package]
name = "czkawka_gui"
version = "11.0.1"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2024"
rust-version = "1.92.0"
description = "GTK frontend of Czkawka"
license = "MIT"
homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
gdk4 = { version = "0.11.0", default-features = false, features = ["v4_6"] }
glib = "0.22.0"
gtk4 = { version = "0.11.0", default-features = false, features = ["v4_6"] }
humansize = "2.1"
chrono = "0.4.38"
crossbeam-channel = "0.5"
directories-next = "2.0"
open = "5.3"
image = "0.25"
regex = "1.11"
fs_extra = "1.3"
dunce = "1.0.5"
i18n-embed = { version = "0.16", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.10"
rust-embed = { version = "8.5", features = ["debug-embed"] }
once_cell = "1.20"
log = "0.4.22"
fun_time = { version = "0.3", features = ["log"] }
rayon = "1.10"
czkawka_core = { path = "../czkawka_core", version = "11.0.1", features = [] }
resvg = { version = "0.47.0", default-features = false }
serde_json = "1.0.142"
serde = { version = "1.0.219", features = ["derive"] }
itertools = "0.14.0"
rand = "0.10.0"
[dev-dependencies]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }
[features]
default = []
heif = ["czkawka_core/heif"]
libraw = ["czkawka_core/libraw"]
libavif = ["czkawka_core/libavif"]
# Allows to use trash on Linux when using xdg-portal, needed by e.g. flatpak where normal trash access always fails
# No-op on other OSes, it is slower and provides less helpful error messages
xdg_portal_trash = ["czkawka_core/xdg_portal_trash"]
[lints]
workspace = true