-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (32 loc) · 1.18 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
[package]
name = "find-subimage"
description = "A rust crate to find a subimage within a larger image"
version = "0.1.12"
edition = "2021"
license = "MIT OR Apache-2.0 OR BSL-1.0 OR MPL-2.0 OR Zlib OR Unlicense"
homepage = "https://github.com/nico-abram/find-subimage/"
repository = "https://github.com/nico-abram/find-subimage/"
documentation = "https://docs.rs/find-subimage"
readme = "README.md"
keywords = ["subimage", "match", "find", "position", "processing"]
categories = ["algorithms", "graphics", "multimedia::images", "multimedia"]
include = ["/src", "/examples", "LICENSE"]
[dependencies]
opencv = { version = "0.61", optional = true }
simdeez = { version = "1.0.7", optional = true }
[features]
default = ["simdeez", "simdeez-default-new"]
# This changes the default backend from ::new() to return simdeez
simdeez-default-new = []
# This enables checked indexing for some operations in the simdeez implementation
# Should only be needed when debugging issues
checked-simdeez = []
docs-only = ["opencv/docs-only"]
[workspace]
# For examples
[dev-dependencies]
image = "0.23"
[package.metadata.docs.rs]
features = ["opencv", "docs-only"]
[badges]
maintenance = { status = "passively-developed" }