forked from image-rs/imageproc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 1.93 KB
/
Cargo.toml
File metadata and controls
67 lines (59 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "imageproc"
version = "0.26.1"
authors = ["theotherphil"]
rust-version = "1.87.0"
edition = "2024"
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 = [".github/*", "examples/*", "tests/*"]
[features]
default = ["rayon", "image/default", "text", "fft"]
display-window = ["sdl2"]
rayon = ["dep:rayon", "image/rayon"]
fft = ["dep:rustdct"]
text = ["dep:ab_glyph"]
[dependencies]
ab_glyph = { version = "0.2.23", default-features = false, features = ["std"], optional = true}
approx = { version = "0.5", default-features = false }
image = { version = "0.25.8", default-features = false }
itertools = { version = "0.14.0", default-features = false, features = [
"use_std",
] }
nalgebra = { version = "0.34.0", default-features = false, features = ["std"] }
num = { version = "0.4.0", default-features = false }
rand = { version = "0.10.0", default-features = false, features = [
"thread_rng"
] }
rand_distr = { version = "0.6.0", default-features = false }
rayon = { version = "1.10.0", optional = true, default-features = false }
sdl2 = { version = "0.38.0", optional = true, default-features = false, features = [
"bundled",
] }
katexit = { version = "0.1.4", optional = true, default-features = false }
rustdct = { version = "0.7.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.4.0", default-features = false, features = ["wasm_js"] }
[dev-dependencies]
assert_approx_eq = "1.1.0"
proptest = "1.9.0"
wasm-bindgen-test = "0.3.38"
[package.metadata.docs.rs]
# See https://github.com/image-rs/imageproc/issues/358
# all-features = true
features = ["katexit"]
[profile.release]
opt-level = 3
debug = true
[profile.dev]
opt-level = 1
[profile.bench]
opt-level = 3
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 1