1
0
Fork 0
mirror of synced 2024-05-10 23:43:09 +12:00
czkawka/czkawka_core/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

84 lines
1.8 KiB
TOML

[package]
name = "czkawka_core"
version = "5.1.0"
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
edition = "2021"
rust-version = "1.67.1"
description = "Core of Czkawka app"
license = "MIT"
homepage = "https://github.com/qarmin/czkawka"
repository = "https://github.com/qarmin/czkawka"
[dependencies]
humansize = "2.1"
rayon = "1.7"
crossbeam-channel = "0.5"
# For saving/loading config files to specific directories
directories-next = "2.0"
# Needed by similar images
image_hasher = "1.1"
bk-tree = "0.5"
image = "0.24"
hamming = "0.1"
# Needed by same music
bitflags = "2.2"
lofty = "0.12"
# Futures - needed by async progress sender
futures = "0.3.28"
# Needed by broken files
zip = { version = "0.6", features = ["aes-crypto", "bzip2", "deflate", "time"], default-features = false }
audio_checker = "0.1"
pdf = "0.8"
# Needed by audio similarity feature
rusty-chromaprint = "0.1"
symphonia = { version = "0.5", features = ["mp3", "aac", "alac", "flac", "isomp4", "mkv", "ogg", "pcm", "vorbis", "wav"] }
# Hashes for duplicate files
blake3 = "1.3"
crc32fast = "1.3"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
tempfile = "3.5"
# Video Duplicates
vid_dup_finder_lib = "0.1"
ffmpeg_cmdline_utils = "0.1"
# Saving/Loading Cache
serde = "1.0"
bincode = "1.3"
serde_json = "1.0"
# Language
i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6"
rust-embed = "6.6"
once_cell = "1.17"
# Raw image files
rawloader = "0.37"
imagepipe = "0.5"
# Checking for invalid extensions
mime_guess = "2.0"
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
anyhow = { version = "1.0", optional = true }
state = "0.5"
[features]
default = []
heif = ["dep:libheif-rs", "dep:anyhow"]