mirror of
https://github.com/qarmin/czkawka
synced 2024-10-31 21:20:19 +00:00
d1c66fda1b
* New image compare algorithm * Par iter * Ending words
75 lines
1.6 KiB
TOML
75 lines
1.6 KiB
TOML
[package]
|
|
name = "czkawka_core"
|
|
version = "4.1.0"
|
|
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
|
|
edition = "2021"
|
|
description = "Core of Czkawka app"
|
|
license = "MIT"
|
|
homepage = "https://github.com/qarmin/czkawka"
|
|
repository = "https://github.com/qarmin/czkawka"
|
|
|
|
|
|
[dependencies]
|
|
humansize = "1.1.1"
|
|
rayon = "1.5.1"
|
|
crossbeam-channel = "0.5.4"
|
|
|
|
# For saving/loading config files to specific directories
|
|
directories-next = "2.0.0"
|
|
|
|
# Needed by similar images
|
|
image_hasher = "1.0.0"
|
|
bk-tree = "0.4.0"
|
|
image = "0.24.2"
|
|
hamming = "0.1.3"
|
|
|
|
# Needed by same music
|
|
bitflags = "1.3.2"
|
|
lofty="0.7.0"
|
|
|
|
# Futures - needed by async progress sender
|
|
futures = "0.3.21"
|
|
|
|
# Needed by broken files
|
|
zip = { version = "0.6.2", 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"] }
|
|
|
|
tempfile = "3.3.0"
|
|
|
|
# Video Duplactes
|
|
vid_dup_finder_lib = "0.1.0"
|
|
ffmpeg_cmdline_utils = "0.1.1"
|
|
|
|
# Saving/Loading Cache
|
|
serde = "1.0.137"
|
|
bincode = "1.3.3"
|
|
serde_json = "1.0.81"
|
|
|
|
# Language
|
|
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
|
|
i18n-embed-fl = "0.6.4"
|
|
rust-embed = "6.4.0"
|
|
once_cell = "1.10.0"
|
|
|
|
# Raw image files
|
|
rawloader = "0.37.1"
|
|
imagepipe = "0.5.0"
|
|
|
|
# Checking for invalid extensions
|
|
mime_guess = "2.0.4"
|
|
infer = "0.8.0"
|
|
|
|
num_cpus = "1.13.1"
|
|
|
|
libheif-rs = { version = "0.15.0", optional = true }
|
|
anyhow = { version = "1.0.57", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
heif = ["dep:libheif-rs", "dep:anyhow"] |