nifti 0.17.0

Rust implementation of the NIfTI file format
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "nifti"
version = "0.17.0"
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
build = false
exclude = ["resources/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the NIfTI file format"
documentation = "https://docs.rs/crate/nifti"
readme = "README.md"
keywords = [
    "nifti",
    "neuroimaging",
    "standard",
    "parser",
]
categories = ["parser-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Enet4/nifti-rs"

[package.metadata.docs.rs]
features = [
    "ndarray_volumes",
    "nalgebra_affine",
]

[features]
default = ["ndarray_volumes"]
nalgebra_affine = [
    "nalgebra",
    "simba",
]
ndarray_volumes = ["ndarray"]

[lib]
name = "nifti"
path = "src/lib.rs"

[[example]]
name = "gen_nifti"
path = "examples/gen_nifti/main.rs"

[[example]]
name = "niftidump"
path = "examples/niftidump/main.rs"

[[test]]
name = "affine"
path = "tests/affine.rs"

[[test]]
name = "header"
path = "tests/header.rs"

[[test]]
name = "object"
path = "tests/object.rs"

[[test]]
name = "util"
path = "tests/util.rs"

[[test]]
name = "volume"
path = "tests/volume.rs"

[[test]]
name = "writer"
path = "tests/writer.rs"

[dependencies.approx]
version = "0.5"

[dependencies.bytemuck]
version = "1.23"
features = ["extern_crate_alloc"]

[dependencies.byteordered]
version = "0.6"

[dependencies.either]
version = "1.15"

[dependencies.flate2]
version = "1.1"

[dependencies.nalgebra]
version = "0.33"
optional = true

[dependencies.ndarray]
version = "0.16"
features = ["approx"]
optional = true

[dependencies.num-complex]
version = "0.4"
features = ["bytemuck"]

[dependencies.num-derive]
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.quick-error]
version = "2.0"

[dependencies.rgb]
version = "0.8"

[dependencies.simba]
version = "0.9"
optional = true
default-features = false

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.tempfile]
version = "3.20"