2020-09-01 17:34:39 +00:00
|
|
|
[package]
|
|
|
|
name = "czkawka_gui"
|
2021-08-07 19:25:43 +00:00
|
|
|
version = "3.2.0"
|
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-06-25 16:07:13 +00:00
|
|
|
gdk = "0.14.0"
|
2021-07-21 19:48:21 +00:00
|
|
|
glib = "0.14.2"
|
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-06-25 16:07:13 +00:00
|
|
|
futures = "0.3.15"
|
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-07-30 05:16:35 +00:00
|
|
|
open = "2.0.0"
|
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-03-11 13:31:59 +00:00
|
|
|
# Move files to trash
|
|
|
|
trash = "1.3.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-06-25 16:07:13 +00:00
|
|
|
version = "0.14.0"
|
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
|
|
|
|