2020-09-01 17:34:39 +00:00
|
|
|
[package]
|
|
|
|
name = "czkawka_gui"
|
2022-04-23 22:05:21 +00:00
|
|
|
version = "4.1.0"
|
2020-10-10 09:15:20 +00:00
|
|
|
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
|
2022-02-01 16:08:41 +00:00
|
|
|
edition = "2021"
|
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-04-23 22:05:21 +00:00
|
|
|
czkawka_core = { path = "../czkawka_core", version = "4.1.0"}
|
2022-05-22 08:59:09 +00:00
|
|
|
gdk4 = "0.4.7"
|
2022-05-16 16:23:07 +00:00
|
|
|
glib = "0.15.11"
|
2020-09-20 09:32:55 +00:00
|
|
|
|
2021-06-25 16:07:13 +00:00
|
|
|
humansize = "1.1.1"
|
|
|
|
chrono = "0.4.19"
|
2020-09-01 17:34:39 +00:00
|
|
|
|
2020-12-07 14:25:44 +00:00
|
|
|
# Used for sending stop signal across threads
|
2022-04-02 14:11:28 +00:00
|
|
|
crossbeam-channel = "0.5.4"
|
2020-09-01 17:34:39 +00:00
|
|
|
|
2020-12-07 14:25:44 +00:00
|
|
|
# To get informations about progress
|
2022-04-02 14:11:28 +00:00
|
|
|
futures = "0.3.21"
|
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-05-16 16:23:07 +00:00
|
|
|
open = "2.1.2"
|
2020-10-14 19:10:27 +00:00
|
|
|
|
2020-12-16 09:13:56 +00:00
|
|
|
# To get image preview
|
2022-05-16 16:23:07 +00:00
|
|
|
image = "0.24.2"
|
2020-12-16 09:13:56 +00:00
|
|
|
|
2021-12-02 12:31:10 +00:00
|
|
|
# To be able to use custom select
|
2022-04-02 14:11:28 +00:00
|
|
|
regex = "1.5.5"
|
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
|
|
|
|
trash = "1.3.0"
|
|
|
|
|
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-04-22 19:46:33 +00:00
|
|
|
rust-embed = "6.4.0"
|
2022-04-02 14:11:28 +00:00
|
|
|
once_cell = "1.10.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]
|
|
|
|
version = "0.4.7"
|
2020-09-26 15:16:12 +00:00
|
|
|
default-features = false # just in case
|
2022-05-22 08:59:09 +00:00
|
|
|
features = ["v4_6"]
|
2020-09-03 15:33:43 +00:00
|
|
|
|