1
0
Fork 0
mirror of synced 2024-05-17 19:03:08 +12:00
This commit is contained in:
Rafał Mikrut 2023-06-08 10:31:20 +02:00
parent f8a97e3b7a
commit ae4e64f316
3 changed files with 8 additions and 7 deletions

6
Cargo.lock generated
View file

@ -548,6 +548,7 @@ dependencies = [
"imagepipe",
"infer",
"libheif-rs",
"libheif-sys",
"lofty",
"mime_guess",
"num_cpus",
@ -1721,12 +1722,11 @@ dependencies = [
[[package]]
name = "libheif-sys"
version = "1.14.3"
version = "1.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d309f5eecf6f9d0ba8a36c3a911f46e96bd13a84164ee4620d2c6e80eea66fdd"
checksum = "6af8b7a4151ae10f6d2e8684f7172c43f09c0258c84190fd9704422588ceec63"
dependencies = [
"libc",
"pkg-config",
]
[[package]]

View file

@ -73,11 +73,12 @@ infer = "0.13"
num_cpus = "1.15"
# Heif/Heic
libheif-rs = { version = "0.18.0", optional = true } # Do not upgrade now, since Ubuntu 22.04 not works with newer version
libheif-rs = { version = "=0.18.0", optional = true } # Do not upgrade now, since Ubuntu 22.04 not works with newer version
libheif-sys = { version = "=1.14.2", optional = true } # 1.14.3 brake compilation on Ubuntu 22.04
anyhow = { version = "1.0" }
state = "0.6"
[features]
default = []
heif = ["dep:libheif-rs"]
heif = ["dep:libheif-rs", "dep:libheif-sys"]

View file

@ -10,8 +10,8 @@ homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
gdk4 = "0.6.3"
glib = "0.17.10"
gdk4 = "0.6"
glib = "0.17"
humansize = "2.1"
chrono = "0.4.26"