stuffit 0.1.2

StuffIt (.sit) archive parser, decompressor, and creator
Documentation
[[bin]]
name = "stuffit"
path = "src/main.rs"
required-features = ["cli"]

[dependencies.clap]
features = ["derive"]
optional = true
version = "4"

[dependencies.encoding_rs]
version = "0.8.35"

[dependencies.flate2]
version = "1.0"

[dependencies.log]
version = "0.4"

[dependencies.md5]
version = "0.7"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies]

[features]
cli = ["dep:clap"]
default = ["cli"]

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

[package]
authors = ["Ben Letchford <ben@letchford.cloud>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compression", "encoding", "parser-implementations"]
description = "StuffIt (.sit) archive parser, decompressor, and creator"
edition = "2021"
keywords = ["stuffit", "sit", "archive", "compression", "macintosh"]
license = "MIT OR Apache-2.0"
name = "stuffit"
readme = "README.md"
repository = "https://github.com/benletchford/stuffit-rs"
version = "0.1.2"

[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2"

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

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