array-format 0.10.0

A block-backed, footer-indexed container for storing multiple n-dimensional arrays in a single file, with a delta/overlay architecture and pluggable compression and storage backends.
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 = "array-format"
version = "0.10.0"
build = false
exclude = [
    "/target",
    "/.github",
    "/benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A block-backed, footer-indexed container for storing multiple n-dimensional arrays in a single file, with a delta/overlay architecture and pluggable compression and storage backends."
homepage = "https://github.com/robinskil/array-format"
documentation = "https://docs.rs/array-format"
readme = "README.md"
keywords = [
    "array",
    "ndarray",
    "tensor",
    "storage",
    "compression",
]
categories = [
    "data-structures",
    "encoding",
    "filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/robinskil/array-format"

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

[[example]]
name = "01_basic"
path = "examples/01_basic.rs"

[[example]]
name = "02_chunked_partial_write"
path = "examples/02_chunked_partial_write.rs"

[[example]]
name = "03_fill_values"
path = "examples/03_fill_values.rs"

[[example]]
name = "04_vlen_strings"
path = "examples/04_vlen_strings.rs"

[[example]]
name = "05_attributes"
path = "examples/05_attributes.rs"

[[example]]
name = "06_layers_and_compact"
path = "examples/06_layers_and_compact.rs"

[[example]]
name = "07_on_disk"
path = "examples/07_on_disk.rs"

[[example]]
name = "08_statistics"
path = "examples/08_statistics.rs"

[[example]]
name = "09_shared_cache"
path = "examples/09_shared_cache.rs"

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

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

[dependencies.bytes]
version = "1"

[dependencies.futures]
version = "0.3"

[dependencies.indexmap]
version = "2"

[dependencies.lz4_flex]
version = "0.11"

[dependencies.moka]
version = "0.12"
features = ["future"]

[dependencies.ndarray]
version = "0.17"

[dependencies.object_store]
version = "0.13"

[dependencies.rkyv]
version = "0.8"
features = [
    "bytecheck",
    "pointer_width_64",
]

[dependencies.tempfile]
version = "3"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "sync",
    "fs",
    "io-util",
]

[dependencies.zerocopy]
version = "0.8"
features = ["derive"]

[dependencies.zstd]
version = "0.13"

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

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]

[profile.release]
debug = 2