eazip 0.2.2

An simple yet flexible zip library
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"
rust-version = "1.87"
name = "eazip"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An simple yet flexible zip library"
documentation = "https://docs.rs/eazip"
readme = "README.md"
keywords = [
    "zip",
    "archive",
]
categories = ["compression"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/a1phyr/eazip"

[features]
default = [
    "deflate",
    "zstd",
    "std",
]
deflate = ["dep:flate2"]
parallel = [
    "dep:rayon",
    "dep:sync_file",
]
std = []
zstd = ["dep:zstd"]

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

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

[dependencies.crc32fast]
version = "1.4.2"

[dependencies.flate2]
version = "1.1.0"
optional = true

[dependencies.memchr]
version = "2.7.4"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.sync_file]
version = "0.3"
optional = true

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