-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
47 lines (43 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "image_sieve"
version = "0.5.17"
authors = ["Florian Fetz <florian.fetz@googlemail.com>"]
description = "GUI based tool to sort out and categorize images, raw images and videos"
repository = "https://github.com/Futsch1/image-sieve"
license = "GPL-3.0+"
categories = ["multimedia::images"]
build = "build.rs"
edition = "2021"
readme = "README.md"
[dependencies]
slint = {version = "1.6.0", features = ["backend-winit-x11", "renderer-winit-femtovg", "compat-1-0"], default_features = false}
nfde = "0.0.8"
image = "0.25"
kamadak-exif = "0.5"
chrono = "0.4"
num-traits = "0.2"
num-derive = "0.4"
opener = "0.7"
img_hash = "3.2"
serde = "1.0"
serde_json = "1.0"
serde_with = "3.0"
home = "0.5"
walkdir = "2"
ffmpeg-next = {version = "7.0", features = ["format", "codec", "software-scaling"], default_features = false}
fast_image_resize = "3.0"
rawloader = "0.37.0"
imagepipe = "0.5.0"
dark-light = "1.0"
strum = "0.26"
strum_macros = "0.26"
image-23 = { version = "=0.23", package="image" }
rusty-fork = "0.3.0"
backtrace = "0.3"
[dev-dependencies]
base64 = "0.22"
[build-dependencies]
slint-build = "1.6.0"
winres = "0.1"
[profile.dev]
opt-level=1