1
0
Fork 0
mirror of synced 2024-05-10 07:22:36 +12:00
czkawka/czkawka_gui/Cargo.toml
Rafał Mikrut 72df211ca2
Big core cleaning (#969)
* Update dependencies

* Split functions in big file finder

* Bad Extensions

* Thread handler bad extensions

* Progress handler

* Atomic counter

* All thread handler simplifying

* Simplifying

* More

* Again

* Btreemap simplifying

* Also

* Next

* Common dir

* Simplify music checking

* Similar Images coplexity

* Loading cache

* Hashes

* Split chunked hashes

* Split into multiple parts

* Last similar video piece

* Probably last part

* Cleaned

* Temp
2023-05-02 22:37:12 +02:00

68 lines
1.4 KiB
TOML

[package]
name = "czkawka_gui"
version = "5.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021"
rust-version = "1.67.1"
description = "GTK frontend of Czkawka"
license = "MIT"
homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
gdk4 = "0.6.3"
glib = "0.17.9"
humansize = "2.1"
chrono = "0.4.24"
# Used for sending stop signal across threads
crossbeam-channel = "0.5.8"
# To get information about progress
futures = "0.3.28"
# For saving/loading config files to specific directories
directories-next = "2.0"
# For opening files
open = "4.1"
# To get image preview
image = "0.24"
# To be able to use custom select
regex = "1.8"
# To get image_hasher types
image_hasher = "1.1"
# Move files to trash
trash = "3.0"
# For moving files(why std::fs doesn't have such features)
fs_extra = "1.3"
# Language
i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6"
rust-embed = "6.6"
once_cell = "1.17"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }
[dependencies.gtk4]
version = "0.6"
default-features = false
features = ["v4_6"]
[dependencies.czkawka_core]
path = "../czkawka_core"
version = "5.1.0"
features = []
[features]
default = []
heif = ["czkawka_core/heif"]