-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
40 lines (33 loc) · 1.09 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
[package]
name = "zune-imageprocs"
version = "0.5.0-rc0"
edition = "2021"
repository = "https://github.com/etemesi254/zune-image/tree/dev/crates/zune-imageprocs"
license = "MIT OR Apache-2.0 OR Zlib"
keywords = ["image", "image-processing"]
categories = ["multimedia::images"]
description = "Common image processing routines for zune-image"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zune-core = { path = "../zune-core", version = "^0.5.0-rc0" }
kamadak-exif = { version = "0.5.5", optional = true }
[dependencies.zune-image]
version = "^0.5.0-rc0"
path = "../zune-image"
default-features = false
#features = ["all"]
[features]
avx2 = []
sse2 = []
sse3 = []
sse41 = []
## Needs nightly, disabled by default
benchmarks = []
## Portable simd, disabled by default
portable-simd = []
log = ["zune-core/log"]
exif = ["zune-image/metadata", "kamadak-exif"]
threads = []
default = ["avx2", "sse2", "sse3", "sse41", "threads"]
[dev-dependencies]
nanorand = { version = "0.7.0", default-features = false, features = ["wyrand"] } # testing purposes.