2020-09-01 17:34:39 +00:00
|
|
|
[package]
|
|
|
|
name = "czkawka_core"
|
2021-11-22 05:48:07 +00:00
|
|
|
version = "3.3.1"
|
2020-09-29 07:27:45 +00:00
|
|
|
authors = ["Rafał Mikrut <mikrutrafal@protonmail.com>"]
|
2020-09-01 17:34:39 +00:00
|
|
|
edition = "2018"
|
2020-09-29 07:27:45 +00:00
|
|
|
description = "Core of Czkawka app"
|
|
|
|
license = "MIT"
|
|
|
|
homepage = "https://github.com/qarmin/czkawka"
|
|
|
|
repository = "https://github.com/qarmin/czkawka"
|
|
|
|
|
2020-09-01 17:34:39 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-25 16:07:13 +00:00
|
|
|
humansize = "1.1.1"
|
|
|
|
rayon = "1.5.1"
|
|
|
|
crossbeam-channel = "0.5.1"
|
2020-10-14 19:10:27 +00:00
|
|
|
|
2020-12-27 09:56:26 +00:00
|
|
|
# For saving/loading config files to specific directories
|
|
|
|
directories-next = "2.0.0"
|
2020-10-14 19:10:27 +00:00
|
|
|
|
|
|
|
# Needed by similar images
|
2021-07-21 19:48:21 +00:00
|
|
|
img_hash = "3.2.0"
|
2021-08-06 14:40:43 +00:00
|
|
|
bk-tree = "0.4.0"
|
2021-06-25 16:07:13 +00:00
|
|
|
image = "0.23.14"
|
2021-07-21 19:48:21 +00:00
|
|
|
hamming = "0.1.3"
|
2020-11-02 20:56:07 +00:00
|
|
|
|
|
|
|
# Needed by same music
|
2021-11-18 10:23:17 +00:00
|
|
|
bitflags = "1.3.2"
|
2020-11-02 20:56:07 +00:00
|
|
|
audiotags = "0.2.7182"
|
2020-12-02 09:25:27 +00:00
|
|
|
|
|
|
|
# Futures - needed by async progress sender
|
2021-11-18 10:23:17 +00:00
|
|
|
futures = "0.3.17"
|
2021-01-15 10:04:52 +00:00
|
|
|
|
|
|
|
# Needed by broken files
|
2021-06-25 16:07:13 +00:00
|
|
|
zip = "0.5.13"
|
|
|
|
rodio = { version = "0.14.0", optional = true }
|
2021-02-03 18:59:06 +00:00
|
|
|
|
2021-11-23 10:10:24 +00:00
|
|
|
# Hashes for duplicate files
|
2021-11-18 10:23:17 +00:00
|
|
|
blake3 = "1.2.0"
|
2021-02-03 18:59:06 +00:00
|
|
|
crc32fast = "1.2.1"
|
2021-03-08 06:47:17 +00:00
|
|
|
xxhash-rust = { version = "0.8.2", features = ["xxh3"] }
|
2021-02-05 18:07:20 +00:00
|
|
|
|
2021-11-18 10:23:17 +00:00
|
|
|
tempfile = "3.2.0"
|
2021-02-11 18:04:23 +00:00
|
|
|
|
2021-11-23 10:10:24 +00:00
|
|
|
# Video Duplactes
|
2021-12-05 17:34:12 +00:00
|
|
|
vid_dup_finder_lib = "0.1.0"
|
2021-11-23 10:10:24 +00:00
|
|
|
ffmpeg_cmdline_utils = "0.1.0"
|
2021-12-05 20:01:16 +00:00
|
|
|
|
|
|
|
# Saving/Loading Cache
|
2021-12-05 17:34:12 +00:00
|
|
|
serde = "1.0.130"
|
|
|
|
bincode = "1.3.3"
|
2021-12-05 20:01:16 +00:00
|
|
|
serde_json = "1.0.72"
|
2021-12-05 17:34:12 +00:00
|
|
|
|
2021-12-11 15:16:14 +00:00
|
|
|
# Language
|
|
|
|
i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester"] }
|
|
|
|
i18n-embed-fl = "0.6"
|
|
|
|
rust-embed = "6.2.0"
|
|
|
|
once_cell = "1.8.0"
|
2021-11-23 10:10:24 +00:00
|
|
|
|
2021-02-05 18:07:20 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2021-02-11 18:04:23 +00:00
|
|
|
broken_audio = ["rodio"]
|