1
0
Fork 0
mirror of synced 2024-06-01 18:19:46 +12:00

Update GTK dependency

This commit is contained in:
Rafał Mikrut 2022-10-21 20:11:39 +02:00
parent 42ecc94deb
commit 9aa9297758
4 changed files with 419 additions and 241 deletions

612
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -10,10 +10,10 @@ homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
clap = { version = "3.2.21", features = ["derive"] }
clap = { version = "3.2.22", features = ["derive"] }
# For enum types
image_hasher = "1.0.0"
image_hasher = "1.1.0"
[dependencies.czkawka_core]
path = "../czkawka_core"

View file

@ -11,7 +11,7 @@ repository = "https://github.com/qarmin/czkawka"
[dependencies]
humansize = "2.0.0"
humansize = "2.1.0"
rayon = "1.5.3"
crossbeam-channel = "0.5.6"
@ -19,9 +19,9 @@ crossbeam-channel = "0.5.6"
directories-next = "2.0.0"
# Needed by similar images
image_hasher = "1.0.0"
image_hasher = "1.1.0"
bk-tree = "0.4.0"
image = "0.24.3"
image = "0.24.4"
hamming = "0.1.3"
# Needed by same music
@ -29,17 +29,17 @@ bitflags = "1.3.2"
lofty = "0.8.1"
# Futures - needed by async progress sender
futures = "0.3.24"
futures = "0.3.25"
# Needed by broken files
zip = { version = "0.6.2", features = ["aes-crypto", "bzip2", "deflate", "time"], default-features = false }
zip = { version = "0.6.3", features = ["aes-crypto", "bzip2", "deflate", "time"], default-features = false }
audio_checker = "0.1.0"
pdf = "0.7.2"
# Hashes for duplicate files
blake3 = "1.3.1"
crc32fast = "1.3.2"
xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
tempfile = "3.3.0"
@ -48,15 +48,15 @@ vid_dup_finder_lib = "0.1.1"
ffmpeg_cmdline_utils = "0.1.2"
# Saving/Loading Cache
serde = "1.0.144"
serde = "1.0.147"
bincode = "1.3.3"
serde_json = "1.0.85"
serde_json = "1.0.87"
# Language
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.4.1"
once_cell = "1.14.0"
rust-embed = "6.4.2"
once_cell = "1.15.0"
# Raw image files
rawloader = "0.37.1"
@ -69,8 +69,8 @@ infer = "0.9.0"
num_cpus = "1.13.1"
# Heif/Heic
libheif-rs = { version = "0.15.0", optional = true }
anyhow = { version = "1.0.65", optional = true }
libheif-rs = { version = "0.15.1", optional = true }
anyhow = { version = "1.0.66", optional = true }
[features]
default = []

View file

@ -10,32 +10,32 @@ homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
gdk4 = "0.4.8"
glib = "0.15.12"
gdk4 = "0.5.0"
glib = "0.16.1"
humansize = "2.0.0"
humansize = "2.1.0"
chrono = "0.4.22"
# Used for sending stop signal across threads
crossbeam-channel = "0.5.6"
# To get informations about progress
futures = "0.3.24"
futures = "0.3.25"
# For saving/loading config files to specific directories
directories-next = "2.0.0"
# For opening files
open = "3.0.2"
open = "3.0.3"
# To get image preview
image = "0.24.3"
image = "0.24.4"
# To be able to use custom select
regex = "1.6.0"
# To get image_hasher types
image_hasher = "1.0.0"
image_hasher = "1.1.0"
# Move files to trash
trash = "2.1.5"
@ -46,14 +46,14 @@ fs_extra = "1.2.0"
# Language
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.4.1"
once_cell = "1.14.0"
rust-embed = "6.4.2"
once_cell = "1.15.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["combaseapi", "objbase", "shobjidl_core", "windef", "winerror", "wtypesbase", "winuser"] }
[dependencies.gtk4]
version = "0.4.8"
version = "0.5.0"
default-features = false
features = ["v4_6"]