[dependencies.futures]
default-features = false
features = ["std"]
optional = true
version = "0.3.31"
[dependencies.pin-project-lite]
version = "0.2.15"
[dependencies.thiserror]
version = "1.0.68"
[dependencies.tokio]
default-features = false
features = ["io-util"]
optional = true
version = "1.41.0"
[dependencies.zstd]
version = "0.13.2"
[dev-dependencies.assert_matches]
version = "1.5.0"
[dev-dependencies.easy-hex]
default-features = false
version = "1.0.0"
[dev-dependencies.futures]
version = "0.3.31"
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.proptest]
version = "1.5.0"
[dev-dependencies.tokio]
features = ["full"]
version = "1.41.0"
[lib]
name = "zstd_framed"
path = "src/lib.rs"
[package]
authors = ["Kyle Lacy <rust@kyle.space>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["compression", "asynchronous"]
description = "zstd seekable format compression and decompression. Supports sync and async I/O"
edition = "2021"
keywords = ["zstd", "zstandard", "seekable"]
license = "MIT OR Unlicense"
name = "zstd-framed"
readme = "README.md"
rust-version = "1.81"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
[[test]]
name = "test_async_reader_futures"
path = "tests/test_async_reader_futures.rs"
[[test]]
name = "test_async_reader_tokio"
path = "tests/test_async_reader_tokio.rs"
[[test]]
name = "test_async_writer_futures"
path = "tests/test_async_writer_futures.rs"
[[test]]
name = "test_async_writer_tokio"
path = "tests/test_async_writer_tokio.rs"
[[test]]
name = "test_reader"
path = "tests/test_reader.rs"
[[test]]
name = "test_writer"
path = "tests/test_writer.rs"