delta-kit 0.1.0

Binary delta codec: Rabin rolling-hash copy/insert opcodes, prefix/suffix fast-path, XOR+Zstd binary mode, binary-safe.
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"
rust-version = "1.85"
name = "delta-kit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binary delta codec: Rabin rolling-hash copy/insert opcodes, prefix/suffix fast-path, XOR+Zstd binary mode, binary-safe."
readme = "README.md"
keywords = [
    "delta",
    "diff",
    "binary-diff",
    "codec",
    "rolling-hash",
]
categories = [
    "data-structures",
    "compression",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/WyattAu/delta-kit"

[features]
default = ["zstd"]
zstd = ["dep:zstd"]

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

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

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

[dependencies.blake3]
version = "1.8"

[dependencies.thiserror]
version = "2.0"

[dependencies.zstd]
version = "0.13"
optional = true

[dev-dependencies.proptest]
version = "1.6"