[package]
edition = "2021"
name = "simple-archive"
version = "0.4.0"
authors = ["Jaime Cura <jaimecura@gmail.com>"]
build = "build_script.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Slim library to simplify handling compressed archives in Rust based on libarchive"
homepage = "https://github.com/jaimecura/simple-archive.git"
readme = "README.md"
keywords = [
"compression",
"archive",
"libarchive",
]
license = "MIT"
repository = "https://github.com/jaimecura/simple-archive.git"
[lib]
name = "simple_archive"
path = "src/lib.rs"
[[test]]
name = "compress"
path = "tests/compress.rs"
[[test]]
name = "uncompress"
path = "tests/uncompress.rs"
[dependencies.libc]
version = "0.2"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.sha256]
version = "1.5"
[build-dependencies.pkg-config]
version = "0.3"