bindle-file 0.0.1

an efficient binary archive format
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"
name = "bindle-file"
version = "0.0.1"
authors = ["Zach Shipko <zachshipko@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "bindle"
description = "an efficient binary archive format"
documentation = "https://docs.rs/bindle-file"
readme = "README.md"
keywords = [
    "archive",
    "file-format",
]
license = "ISC"
repository = "https://tangled.org/zachshipko.com/bindle-file"

[features]
cli = ["clap"]
default = ["cli"]

[lib]
name = "bindle_file"
crate-type = [
    "cdylib",
    "staticlib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "bindle"
path = "src/bin/bindle.rs"
required-features = ["cli"]

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

[dependencies.crc32fast]
version = "1.5.0"

[dependencies.fs2]
version = "0.4"

[dependencies.memmap2]
version = "0.9.9"

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

[dependencies.zstd]
version = "0.13"

[build-dependencies.cbindgen]
version = "0.29"