archive 0.3.0

A unified interface for extracting common archive formats in-memory
Documentation
[dependencies.ar]
version = "0.9.0"

[dependencies.bzip2]
version = "0.6"

[dependencies.flate2]
default-features = false
features = ["rust_backend"]
version = "1.0"

[dependencies.lz4]
version = "1.28"

[dependencies.lzma-rs]
version = "0.3"

[dependencies.mime-type]
version = "0.2"

[dependencies.sevenz-rust]
version = "0.6"

[dependencies.tar]
version = "0.4"

[dependencies.thiserror]
version = "2.0"

[dependencies.zip]
default-features = false
features = ["deflate"]
version = "6.0"

[dependencies.zstd]
version = "0.13"

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

[package]
authors = ["secana"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compression", "filesystem"]
description = "A unified interface for extracting common archive formats in-memory"
edition = "2024"
keywords = ["archive", "zip", "tar", "compression", "extraction"]
license = "MIT OR Apache-2.0"
name = "archive"
readme = "README.md"
repository = "https://github.com/secana/archive"
version = "0.3.0"

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

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

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

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

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

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

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