gut 0.4.2

Geometry utilities: storing, manipulating and processing geometries
Documentation
[package]
name = "gut"
version = "0.4.2"
authors = ["Egor Larionov <egor.larionov@gmail.com>"]
description = "Geometry utilities: storing, manipulating and processing geometries"
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.com/elrnv/gut"
repository = "https://gitlab.com/elrnv/gut"
documentation = "https://docs.rs/gut"
keywords = ["geometry", "processing", "algorithms", "io"]

[badges]
gitlab = { repository = "elrnv/gut", branch = "master" }

[dependencies]
gut-derive = { path = "gut-derive", version = "0.1.0" }
num-traits = "0.2"
buffer = { package = "data-buffer", version = "0.7", features = ['numeric'] }
reinterpret = "0.2"
autodiff = { version = "0.1", features = ["cgmath"] }
vtkio = { version = "0.3", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
chashmap = { version = "2", optional = true }
rayon = { version = "1", optional = true }
fnv = { version = "1", optional = true }
math = { package = "cgmath", version = "0.17" }

[dev-dependencies]
rand = "0.7"
approx = "0.3"
criterion = { version = "0.3" }

[features]
default = ["fnv"]
parallel = ["rayon", "chashmap"]
io = ["vtkio"]
unstable = ["criterion/real_blackbox", "parallel"]
serde_all = ["serde", "math/serde", "buffer/serde_all"]

[[bench]]
name = "storage"
harness = false

[[bench]]
name = "map"
harness = false

[[bench]]
name = "zip"
harness = false

[[bench]]
name = "chunks_iter"
harness = false

[[bench]]
name = "return_vec"
harness = false