mrc 0.2.1

Zero-copy, zero-allocation MRC-2014 file format reader/writer for Rust
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 = "2024"
rust-version = "1.85"
name = "mrc"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-copy, zero-allocation MRC-2014 file format reader/writer for Rust"
homepage = "https://github.com/elemeng/mrc"
documentation = "https://docs.rs/mrc"
readme = "README.md"
keywords = [
    "mrc",
    "cryo-em",
    "cryo-ET",
    "microscopy",
    "scientific-computing",
]
categories = [
    "science",
    "data-structures",
    "no-std",
    "memory-management",
]
license = "MIT"
repository = "https://github.com/elemeng/mrc"

[features]
default = [
    "std",
    "mmap",
    "f16",
    "parallel",
]
f16 = []
mmap = [
    "std",
    "dep:memmap2",
]
parallel = [
    "std",
    "dep:rayon",
]
simd = ["std"]
std = ["dep:once_cell"]

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

[dependencies.memmap2]
version = "0.9"
optional = true

[dependencies.once_cell]
version = "1.19"
optional = true

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.thiserror]
version = "2.0.16"
default-features = false

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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