delta-kit 0.2.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.2.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"]
std = []
zstd = [
    "dep:zstd",
    "std",
]

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

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

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

[[bench]]
name = "delta_bench"
path = "benches/delta_bench.rs"
harness = false
required-features = ["std"]

[dependencies.blake3]
version = "1.8"
default-features = false

[dependencies.hashbrown]
version = "0.17"
features = ["default-hasher"]
default-features = false

[dependencies.thiserror]
version = "2.0"
default-features = false

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

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

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