37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "image-registration"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.88.0"
|
|
authors = ["Wim Pomp <w.pomp@nki.nl>"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Find and apply affine transformations."
|
|
homepage = "https://git.pomppervova.nl/wim/image-registration/src/branch/rs"
|
|
repository = "https://git.pomppervova.nl/wim/image-registration/src/branch/rs"
|
|
documentation = "https://docs.rs/image-registration"
|
|
readme = "README.md"
|
|
keywords = ["affine", "transformation", "ndarray"]
|
|
categories = ["multimedia::images", "science"]
|
|
exclude = ["/tests"]
|
|
|
|
[dependencies]
|
|
algos = "0.6"
|
|
itertools = "0.15"
|
|
ndarray = { version = "0.17", features = ["rayon"] }
|
|
ndarray-linalg = { version = "0.18", features = ["openblas-system"] }
|
|
ndarray-npy = { version = "0.10.0", features = ["npz"] }
|
|
ndrustfft = "0.6"
|
|
num = "0.4"
|
|
rayon = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
rand = "0.10"
|
|
thiserror = "2"
|
|
tiffwrite = "2026.6.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[profile.release]
|
|
debug = true
|