forked from image-rs/imageproc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (47 loc) · 1.25 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
48
49
50
51
52
53
[package]
name = "imageproc"
version = "0.23.0"
authors = ["theotherphil"]
edition = "2018"
license = "MIT"
description = "Image processing operations"
readme = "README.md"
repository = "https://github.com/image-rs/imageproc.git"
homepage = "https://github.com/image-rs/imageproc"
exclude = ["examples/*.ttf"]
[features]
default = [ "rayon" ]
property-testing = [ "quickcheck" ]
display-window = ["sdl2"]
[dependencies]
approx = "0.5"
conv = "0.3.3"
image = { version = "0.24.1", default-features = false }
itertools = "0.10"
nalgebra = { version = "0.30", default-features = false, features = ["std"] }
num = "0.4"
rand = "0.7.3"
rand_distr = "0.2.2"
rusttype = "0.9.2"
rayon = { version = "1.5.1", optional = true }
quickcheck = { version = "0.9.2", optional = true }
sdl2 = { version = "0.35", optional = true, default-features = false, features = ["bundled"] }
[dev-dependencies]
assert_approx_eq = "1.1.0"
image = "0.24.1"
quickcheck = "0.9.2"
wasm-bindgen-test = "0.3.14"
[package.metadata.docs.rs]
# See https://github.com/image-rs/imageproc/issues/358
# all-features = true
features = [ "property-testing" ]
[profile.release]
opt-level = 3
debug = true
[profile.bench]
opt-level = 3
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 1