ndarray-conv 0.6.1

N-Dimension convolution (with FFT) lib for ndarray.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ndarray-conv"
version = "0.6.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "N-Dimension convolution (with FFT) lib for ndarray."
readme = "README.md"
keywords = [
    "convolution",
    "ndarray",
    "FFT",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TYPEmber/ndarray-conv.git"

[features]
rayon = ["dep:rayon"]

[lib]
name = "ndarray_conv"
path = "src/lib.rs"

[[example]]
name = "compare_conv_methods"
path = "examples/compare_conv_methods.rs"

[[bench]]
name = "parallel"
path = "benches/parallel.rs"
harness = false
required-features = ["rayon"]

[[bench]]
name = "with_torch"
path = "benches/with_torch.rs"
harness = false

[dependencies.castaway]
version = "0.2"

[dependencies.ndarray]
version = ">=0.17"
features = ["rayon"]

[dependencies.num]
version = "0.4"

[dependencies.rayon]
version = "1.11"
optional = true

[dependencies.realfft]
version = "3.5"

[dependencies.rustfft]
version = "6.4"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.convolutions-rs]
version = "0.3"

[dev-dependencies.criterion]
version = "0.6"
features = ["html_reports"]

[dev-dependencies.fft-convolver]
version = "0.2"

[dev-dependencies.ndarray-rand]
version = ">=0.16"

[dev-dependencies.ndarray-vision]
version = "0.5"

[dev-dependencies.tch]
version = "0.20.0"
features = ["download-libtorch"]