stardex 0.1.3

A zero-trust, streaming tar parser + per-file hasher for backup pipelines.
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 = "stardex"
version = "0.1.3"
authors = ["Tony peter"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-trust, streaming tar parser + per-file hasher for backup pipelines."
homepage = "https://github.com/tpet93/stardex"
documentation = "https://docs.rs/stardex"
readme = "README.md"
keywords = [
    "tar",
    "hash",
    "backup",
    "streaming",
    "checksum",
]
categories = [
    "command-line-utilities",
    "compression",
]
license = "MIT"
repository = "https://github.com/tpet93/stardex"

[package.metadata.deb]
maintainer = "Tony peter <tpet93@github.com>"
copyright = "2025, Tony peter"
license-file = [
    "LICENSE",
    "4",
]
extended-description = """
    Stardex is a zero-trust, streaming tar parser and per-file hasher designed for backup pipelines.
    It reads tar streams from stdin, emits per-file metadata and hashes to stdout, and never modifies the stream.
"""
depends = "$auto"
section = "utils"
priority = "optional"
assets = [
    [
    "target/release/stardex",
    "usr/bin/",
    "755",
],
    [
    "README.md",
    "usr/share/doc/stardex/README.md",
    "644",
],
    [
    "LICENSE",
    "usr/share/doc/stardex/LICENSE",
    "644",
],
]

[[package.metadata.generate-rpm.assets]]
source = "target/release/stardex"
dest = "/usr/bin/stardex"
mode = "755"

[[package.metadata.generate-rpm.assets]]
source = "README.md"
dest = "/usr/share/doc/stardex/README.md"
mode = "644"

[[package.metadata.generate-rpm.assets]]
source = "LICENSE"
dest = "/usr/share/doc/stardex/LICENSE"
mode = "644"

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

[[bin]]
name = "stardex"
path = "src/main.rs"

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

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.22"

[dependencies.blake3]
version = "1.8"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.csv]
version = "1.4"

[dependencies.hex]
version = "0.4"

[dependencies.md-5]
version = "0.10"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha-1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.tar]
version = "0.4"

[dependencies.xxhash-rust]
version = "0.8"
features = [
    "xxh64",
    "xxh3",
]

[dev-dependencies.assert_cmd]
version = "2.1"

[dev-dependencies.predicates]
version = "3.1"

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

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

[dev-dependencies.xxhash-rust]
version = "0.8"
features = [
    "xxh64",
    "xxh3",
]

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true