-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.27 KB
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
48
49
[package]
name = "simagef"
description = "CLI tool for finding similar images"
version = "1.3.6"
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/gert7/simagef"
homepage = "https://github.com/gert7/simagef"
authors = ["Gert Oja"]
categories = ["command-line-utilities"]
keywords = ["image", "similarity", "finding", "comparison", "similar"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.100"
bytemuck = "1.24.0"
clap = { version = "4.5.53", features = ["derive"] }
crossbeam = "0.8.2"
image = { version = "0.25.9" }
image-compare = { version = "0.5.0", optional = true }
# image-match = { version = "0.2.3", features = ["img"] }
# image-match = { path = "image-match-rs", features = ["img"] }
indicatif = "0.18.3"
lsh-rs2 = { version = "0.4.1", default-features = false }
# lsh-rs = { path = "lsh-rs" }
num_cpus = "1.17.0"
platform-dirs = "0.3.0"
rusqlite = "0.38.0"
num = "0.4.3"
[features]
pixel = ["image-compare"]
avif = ["image/avif-native"]
instrumentation = []
no-exec = []
[dev-dependencies]
pretty_assertions = "1.4.0"
[package.metadata.aur]
depends = ["dav1d"]
# [profile.release]
# opt-level = 3
# debug = false
# overflow-checks = false
# strip = "none"
# lto = "thin"