2020-09-01 17:34:39 +00:00
|
|
|
[package]
|
|
|
|
name = "czkawka_gui"
|
2021-11-22 05:48:07 +00:00
|
|
|
version = "3.3.1"
|
2020-10-10 09:15:20 +00:00
|
|
|
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
|
2020-09-01 17:34:39 +00:00
|
|
|
edition = "2018"
|
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]
|
|
|
|
czkawka_core = { path = "../czkawka_core" }
|
2021-11-18 10:23:17 +00:00
|
|
|
gdk = "0.14.3"
|
|
|
|
glib = "0.14.8"
|
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
|
2021-06-25 16:07:13 +00:00
|
|
|
crossbeam-channel = "0.5.1"
|
2020-09-01 17:34:39 +00:00
|
|
|
|
2020-12-07 14:25:44 +00:00
|
|
|
# To get informations about progress
|
2021-11-18 10:23:17 +00:00
|
|
|
futures = "0.3.17"
|
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
|
2021-11-18 10:23:17 +00:00
|
|
|
open = "2.0.1"
|
2020-10-14 19:10:27 +00:00
|
|
|
|
2020-12-16 09:13:56 +00:00
|
|
|
# To get image preview
|
2021-06-25 16:07:13 +00:00
|
|
|
image = "0.23.14"
|
2020-12-16 09:13:56 +00:00
|
|
|
|
2021-11-19 05:35:26 +00:00
|
|
|
# To get image_hash types
|
|
|
|
img_hash = "3.2.0"
|
|
|
|
|
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-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"] }
|
|
|
|
|
2020-09-01 17:34:39 +00:00
|
|
|
[dependencies.gtk]
|
2021-11-18 10:23:17 +00:00
|
|
|
version = "0.14.3"
|
2020-09-26 15:16:12 +00:00
|
|
|
default-features = false # just in case
|
2020-09-30 14:50:58 +00:00
|
|
|
features = ["v3_22"]
|
2020-09-03 15:33:43 +00:00
|
|
|
|