[package]
edition = "2024"
name = "tar-codec"
version = "0.0.6"
authors = ["William Woodruff <william@astral.sh>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "tar-codec is a small, fast, constrained tar encoder and decoder for Rust"
homepage = "https://github.com/astral-sh/tar-codec"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/astral-sh/tar-codec"
[lib]
name = "tar_codec"
path = "src/lib.rs"
doctest = false
[[test]]
name = "comparison"
path = "tests/comparison.rs"
[[test]]
name = "encode"
path = "tests/encode.rs"
[[test]]
name = "extract"
path = "tests/extract.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "members"
path = "tests/members.rs"
[[test]]
name = "metadata"
path = "tests/metadata.rs"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false
[[bench]]
name = "extraction_filesystem"
path = "benches/extraction_filesystem.rs"
harness = false
[dependencies.archive-trait]
version = "0.0.6"
[dependencies.tar-framing]
version = "0.0.6"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["io-util"]
[dev-dependencies.astral-tokio-tar]
version = "0.6.2"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["async_tokio"]
[dev-dependencies.tar]
version = "0.4.46"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"fs",
"macros",
"rt",
"time",
]