[dependencies.hologram]
default-features = false
version = "^0.1.4"
[dependencies.rayon]
optional = true
version = "1.10"
[dev-dependencies.approx]
version = "0.5"
[[example]]
name = "simple_ffd_deformation"
path = "examples/simple_ffd_deformation.rs"
[[example]]
name = "simple_rbf_deformation"
path = "examples/simple_rbf_deformation.rs"
[features]
default = ["rayon"]
intel-mkl = ["hologram/intel-mkl"]
openblas = ["hologram/openblas"]
rayon = ["dep:rayon", "hologram/rayon"]
[lib]
doctest = false
name = "gmac"
path = "src/lib.rs"
test = true
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
needless_range_loop = "allow"
type_complexity = "allow"
[package]
authors = ["Aleksander Lovric <alexlovric@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "graphics"]
description = "Blazingly fast geometry manipulation and creation library"
documentation = "https://docs.rs/gmac_rs"
edition = "2021"
keywords = ["geometry", "morphing", "ffd", "rbf"]
license = "MIT"
name = "gmac_rs"
readme = "README.md"
repository = "https://github.com/alexlovric/gmac"
version = "0.2.0"
[[test]]
name = "io_tests"
path = "tests/io_tests.rs"
[[test]]
name = "morph_tests"
path = "tests/morph_tests.rs"