-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (44 loc) · 1.16 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
[package]
name = "deconvolution"
version = "0.2.1"
edition = "2024"
rust-version = "1.96"
keywords = ["image", "deconvolution", "deblurring", "restoration", "fft"]
categories = ["algorithms", "computer-vision", "multimedia::images", "science"]
license = "MIT"
description = "Rust image deconvolution and restoration library."
exclude = [".github/**/*", ".tmp/**/*"]
readme = "README.md"
documentation = "https://docs.rs/deconvolution"
repository = "https://github.com/pbkx/deconvolution"
autobenches = false
[package.metadata.docs.rs]
all-features = true
[features]
default = ["rayon"]
rayon = ["dep:rayon", "ndarray/rayon", "image/rayon"]
f16 = ["dep:half"]
[dependencies]
image = { version = "0.25.10", default-features = false, features = ["png", "jpeg"] }
ndarray = "0.17.2"
num-complex = "0.4.6"
rustfft = "6.4.1"
thiserror = "2.0.18"
rayon = { version = "1.12.0", optional = true }
rand = "0.10.1"
rand_distr = "0.6.0"
half = { version = "2.7.1", optional = true }
[dev-dependencies]
criterion = "0.8.2"
[[bench]]
name = "spectral"
harness = false
[[bench]]
name = "rl"
harness = false
[[bench]]
name = "blind"
harness = false
[[bench]]
name = "volume"
harness = false