1
0
Fork 0
mirror of synced 2024-06-01 18:19:46 +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", "imagepipe",
"infer", "infer",
"libheif-rs", "libheif-rs",
"libheif-sys",
"lofty", "lofty",
"mime_guess", "mime_guess",
"num_cpus", "num_cpus",
@ -1721,12 +1722,11 @@ dependencies = [
[[package]] [[package]]
name = "libheif-sys" name = "libheif-sys"
version = "1.14.3" version = "1.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d309f5eecf6f9d0ba8a36c3a911f46e96bd13a84164ee4620d2c6e80eea66fdd" checksum = "6af8b7a4151ae10f6d2e8684f7172c43f09c0258c84190fd9704422588ceec63"
dependencies = [ dependencies = [
"libc", "libc",
"pkg-config",
] ]
[[package]] [[package]]

View file

@ -73,11 +73,12 @@ infer = "0.13"
num_cpus = "1.15" num_cpus = "1.15"
# Heif/Heic # 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" } anyhow = { version = "1.0" }
state = "0.6" state = "0.6"
[features] [features]
default = [] 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" repository = "https://github.com/qarmin/czkawka"
[dependencies] [dependencies]
gdk4 = "0.6.3" gdk4 = "0.6"
glib = "0.17.10" glib = "0.17"
humansize = "2.1" humansize = "2.1"
chrono = "0.4.26" chrono = "0.4.26"