bioformats 0.1.3

Pure Rust reimplementation of Bio-Formats — read/write scientific image formats
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 = "bioformats"
version = "0.1.3"
build = false
include = [
    "/src/**/*.rs",
    "/benches/read_ome_tiff.rs",
    "/examples/**/*.rs",
    "/tests/**/*.rs",
    "/README.md",
    "/LICENSE.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust reimplementation of Bio-Formats — read/write scientific image formats"
homepage = "https://www.openmicroscopy.org/bio-formats/"
readme = "README.md"
keywords = [
    "microscopy",
    "bioformats",
    "image",
    "tiff",
    "ome",
]
categories = [
    "science",
    "multimedia::images",
    "parser-implementations",
]
license-file = "LICENSE.txt"
repository = "https://github.com/henriksson-lab/bioformats-rs"

[features]
jpegxr = ["dep:jpegxr"]
openslide = ["dep:openslide-pure-rs"]

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

[[bin]]
name = "bioformats-convert"
path = "src/bin/bioformats_convert.rs"

[[example]]
name = "read_fixture_bench"
path = "examples/read_fixture_bench.rs"

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

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

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

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

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

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

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

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

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

[[bench]]
name = "read_ome_tiff"
path = "benches/read_ome_tiff.rs"
harness = false

[dependencies.bincode]
version = "1"

[dependencies.byteorder]
version = "1"

[dependencies.bzip2]
version = "0.6"

[dependencies.cfb]
version = "0.10"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.flate2]
version = "1"

[dependencies.hdf5-pure-rust]
version = "0.3"

[dependencies.image]
version = "0.25"
features = [
    "png",
    "bmp",
    "jpeg",
    "gif",
    "tga",
    "webp",
    "pnm",
    "hdr",
    "exr",
    "dds",
    "ff",
]
default-features = false

[dependencies.jpeg-decoder]
version = "0.3"

[dependencies.jpeg2k]
version = "0.10"
features = ["openjp2"]
default-features = false

[dependencies.jpegxr]
version = "0.3"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.mdbtools]
version = "0.1"
package = "mdbtools-pure-rs"

[dependencies.openslide-pure-rs]
version = "0.1"
optional = true

[dependencies.quick-xml]
version = "0.37"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.thiserror]
version = "1"

[dependencies.weezl]
version = "0.1"

[dependencies.zip]
version = "2"
features = [
    "deflate",
    "deflate64",
    "lzma",
    "aes-crypto",
    "time",
]
default-features = false

[dependencies.zstd-pure-rs]
version = "0.1"

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