chunkify 0.6.45

A simple and efficient chunking library for Rust.
Documentation
[package]
name = "chunkify"
version = "0.6.45"
readme = "README.md"
edition = "2024"
authors = ["root@ltpp.vip"]
license = "MIT"
description = """A simple and efficient chunking library for Rust."""
keywords = ["http", "file", "chunk", "upload", "web"]
repository = "https://github.com/crates-dev/chunkify.git"
categories = ["network-programming", "web-programming"]
exclude = [
    "target",
    "Cargo.lock",
    "sh",
    ".github",
    "logs",
    "uploads",
    "**/*.log",
]

[dependencies]
dashmap = "6.1.0"
once_cell = "1.21.3"
twox-hash = "2.1.2"
file-operation = "0.8.16"
tokio = { version = "1.49.0", features = ["full"] }

[profile.dev]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"

[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"