hexz-core 0.4.3

Core engine for high-performance data streaming and compression
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 = "hexz-core"
version = "0.4.3"
authors = ["Will McCallion"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core engine for high-performance data streaming and compression"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/hexz-org/hexz"
resolver = "2"

[features]
compression-zstd = ["dep:zstd"]
default = [
    "compression-zstd",
    "encryption",
    "s3",
    "signing",
]
encryption = [
    "dep:aes-gcm",
    "dep:pbkdf2",
    "dep:hmac",
    "dep:zeroize",
]
s3 = ["dep:rust-s3"]
signing = ["hexz-common/signing"]

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

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

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

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

[dependencies.aes-gcm]
version = "0.10"
optional = true

[dependencies.anyhow]
version = "1.0"

[dependencies.bincode]
version = "1.3"

[dependencies.blake3]
version = "1.5"

[dependencies.bytes]
version = "1.5"

[dependencies.crc32fast]
version = "1.3"

[dependencies.dashmap]
version = "5.5"

[dependencies.fastcdc]
version = "3.1"

[dependencies.hexz-common]
version = "0.4.3"
default-features = false

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.lru]
version = "0.12"

[dependencies.lz4_flex]
version = "0.11"

[dependencies.memmap2]
version = "0.9"

[dependencies.pbkdf2]
version = "0.12"
optional = true

[dependencies.rayon]
version = "1.8"

[dependencies.reqwest]
version = "0.11"
features = [
    "rustls-tls",
    "stream",
    "json",
]
default-features = false

[dependencies.rust-s3]
version = "0.33"
features = [
    "tokio-rustls-tls",
    "fail-on-err",
]
optional = true
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.url]
version = "2.5"

[dependencies.zeroize]
version = "1"
optional = true

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

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

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rstest]
version = "0.18"

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.wiremock]
version = "0.6"