[package]
edition = "2021"
name = "imcombiners"
version = "0.1.1"
build = false
include = [
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE",
"/README.md",
"/src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-backed image stack combine + rejection kernels (IRAF imcombine parity)"
homepage = "https://github.com/ysbach/imcombiners"
documentation = "https://docs.rs/imcombiners"
readme = "README.md"
keywords = [
"astronomy",
"image-processing",
"numpy",
"pyo3",
]
categories = [
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/ysbach/imcombiners"
[features]
extension-module = ["pyo3/extension-module"]
[lib]
name = "_core"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.ndarray]
version = "0.16"
features = ["rayon"]
[dependencies.numpy]
version = "0.28"
[dependencies.pyo3]
version = "0.28"
features = ["abi3-py310"]
[dependencies.rayon]
version = "1.10"
[dependencies.reducers]
version = "0.3"
default-features = false
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1