2020-09-01 17:34:39 +00:00
|
|
|
[package]
|
|
|
|
name = "czkawka_gui"
|
2022-08-30 17:32:33 +00:00
|
|
|
version = "5.0.2"
|
2020-10-10 09:15:20 +00:00
|
|
|
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
|
2022-02-01 16:08:41 +00:00
|
|
|
edition = "2021"
|
2022-09-13 20:18:07 +00:00
|
|
|
rust-version = "1.62"
|
2020-09-29 07:27:45 +00:00
|
|
|
description = "GTK frontend of Czkawka"
|
|
|
|
license = "MIT"
|
|
|
|
homepage = "https://github.com/qarmin/czkawka"
|
|
|
|
repository = "https://github.com/qarmin/czkawka"
|
2020-09-01 17:34:39 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-19 17:09:52 +00:00
|
|
|
gdk4 = "0.4.8"
|
|
|
|
glib = "0.15.12"
|
2020-09-20 09:32:55 +00:00
|
|
|
|
2022-09-13 20:18:07 +00:00
|
|
|
humansize = "2.0.0"
|
2022-08-18 15:16:09 +00:00
|
|
|
chrono = "0.4.22"
|
2020-09-01 17:34:39 +00:00
|
|
|
|
2020-12-07 14:25:44 +00:00
|
|
|
# Used for sending stop signal across threads
|
2022-07-24 18:48:02 +00:00
|
|
|
crossbeam-channel = "0.5.6"
|
2020-09-01 17:34:39 +00:00
|
|
|
|
2020-12-07 14:25:44 +00:00
|
|
|
# To get informations about progress
|
2022-09-13 20:18:07 +00:00
|
|
|
futures = "0.3.24"
|
2020-12-02 09:25:27 +00:00
|
|
|
|
2020-12-07 14:25:44 +00:00
|
|
|
# For saving/loading config files to specific directories
|
|
|
|
directories-next = "2.0.0"
|
|
|
|
|
2020-10-14 19:10:27 +00:00
|
|
|
# For opening files
|
2022-07-19 17:09:52 +00:00
|
|
|
open = "3.0.2"
|
2020-10-14 19:10:27 +00:00
|
|
|
|
2020-12-16 09:13:56 +00:00
|
|
|
# To get image preview
|
2022-07-19 17:09:52 +00:00
|
|
|
image = "0.24.3"
|
2020-12-16 09:13:56 +00:00
|
|
|
|
2021-12-02 12:31:10 +00:00
|
|
|
# To be able to use custom select
|
2022-07-19 17:09:52 +00:00
|
|
|
regex = "1.6.0"
|
2021-12-02 12:31:10 +00:00
|
|
|
|
2022-04-02 14:11:28 +00:00
|
|
|
# To get image_hasher types
|
|
|
|
image_hasher = "1.0.0"
|
2021-11-19 05:35:26 +00:00
|
|
|
|
2021-03-11 13:31:59 +00:00
|
|
|
# Move files to trash
|
2022-07-19 17:09:52 +00:00
|
|
|
trash = "2.1.5"
|
2021-03-11 13:31:59 +00:00
|
|
|
|
2021-11-20 07:32:28 +00:00
|
|
|
# For moving files(why std::fs doesn't have such features)
|
|
|
|
fs_extra = "1.2.0"
|
|
|
|
|
2021-12-11 15:16:14 +00:00
|
|
|
# Language
|
2022-04-02 14:11:28 +00:00
|
|
|
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
|
|
|
|
i18n-embed-fl = "0.6.4"
|
2022-09-13 20:18:07 +00:00
|
|
|
rust-embed = "6.4.1"
|
|
|
|
once_cell = "1.14.0"
|
2021-12-11 15:16:14 +00:00
|
|
|
|
2021-02-20 11:24:36 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }
|
|
|
|
|
2022-05-22 08:59:09 +00:00
|
|
|
[dependencies.gtk4]
|
2022-07-19 17:09:52 +00:00
|
|
|
version = "0.4.8"
|
|
|
|
default-features = false
|
2022-05-22 08:59:09 +00:00
|
|
|
features = ["v4_6"]
|
2020-09-03 15:33:43 +00:00
|
|
|
|
2022-06-08 19:42:51 +00:00
|
|
|
[dependencies.czkawka_core]
|
|
|
|
path = "../czkawka_core"
|
2022-08-30 17:32:33 +00:00
|
|
|
version = "5.0.2"
|
2022-06-08 19:42:51 +00:00
|
|
|
features = []
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2022-07-19 17:09:52 +00:00
|
|
|
heif = ["czkawka_core/heif"]
|