atx_reader 0.1.0

Parser and decoder for Apple .atx texture archives (AAPL container with ASTC payload), as produced by tools like Cellebrite UFED iOS exports.
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 = "atx_reader"
version = "0.1.0"
authors = ["Galba Arueira <galbaarueira@lrgesystems.com>"]
build = false
include = [
    "src/**/*",
    "examples/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser and decoder for Apple .atx texture archives (AAPL container with ASTC payload), as produced by tools like Cellebrite UFED iOS exports."
homepage = "https://github.com/galba-arueira/atx_reader"
readme = "README.md"
keywords = [
    "atx",
    "aapl",
    "astc",
    "texture",
    "cellebrite",
]
categories = [
    "multimedia::images",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/galba-arueira/atx_reader"

[features]
decode = ["dep:astc-decode"]
default = [
    "decode",
    "image",
    "lzfse",
]
image = [
    "dep:image",
    "decode",
]
lzfse = ["dep:lzfse_rust"]

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

[[example]]
name = "decode_to_png"
path = "examples/decode_to_png.rs"
required-features = ["image"]

[[example]]
name = "inspect"
path = "examples/inspect.rs"
required-features = []

[dependencies.astc-decode]
version = "0.3"
optional = true

[dependencies.image]
version = "0.25"
features = ["png"]
optional = true
default-features = false

[dependencies.lzfse_rust]
version = "0.2"
optional = true

[dependencies.thiserror]
version = "2"