# SPDX-License-Identifier: MPL-2.0 [package] name = "moving-least-squares-image" version = "0.1.1" authors = [ "Matthieu Pizenberg ", ] edition = "2018" description = "Image deformation using moving least squares" readme = "README.md" repository = "https://github.com/mpizenberg/rust_mls" homepage = "https://github.com/mpizenberg/rust_mls" license = "MPL-2.0" keywords = ["image", "deformation", "elastic", "mls"] categories = ["algorithms", "graphics", "computer-vision"] [dependencies] moving-least-squares = { version = "0.1.0", path = "../moving-least-squares" } image = { version = "0.23.14", default-features = false } rayon = { version = "1.5.2", optional = true }