[package]
edition = "2024"
rust-version = "1.85.0"
name = "mismall"
version = "2.0.0"
authors = ["Josiah Morris"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming Huffman compression library with AES-256-GCM encryption and archive support"
readme = "README.md"
keywords = [
"compression",
"huffman",
"encryption",
"archive",
"streaming",
]
categories = [
"compression",
"cryptography",
]
license = "MIT"
repository = "https://github.com/gnik-snrub/make_it_small?branch=ai-library-transformation"
[features]
archives = ["compression"]
async = []
cli = [
"compression",
"archives",
"encryption",
"clap",
"indicatif",
"console",
]
compression = []
default = [
"compression",
"archives",
"encryption",
]
encryption = []
[lib]
name = "mismall"
path = "src/lib.rs"
[[bin]]
name = "mismall"
path = "src/main.rs"
required-features = ["cli"]
[[example]]
name = "advanced_compression"
path = "examples/advanced_compression.rs"
[[example]]
name = "archive_extractor_example"
path = "examples/archive_extractor_example.rs"
[[example]]
name = "archive_operations"
path = "examples/archive_operations.rs"
[[example]]
name = "performance"
path = "examples/performance.rs"
[[example]]
name = "simple_compress"
path = "examples/simple_compress.rs"
[[example]]
name = "streaming"
path = "examples/streaming.rs"
[[example]]
name = "test_archive"
path = "examples/test_archive.rs"
[[example]]
name = "test_archive_manual"
path = "examples/test_archive_manual.rs"
[[example]]
name = "test_basic"
path = "examples/test_basic.rs"
[[example]]
name = "test_compress_only"
path = "examples/test_compress_only.rs"
[[test]]
name = "cross_platform_tests"
path = "tests/cross_platform_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "large_file_tests"
path = "tests/large_file_tests.rs"
[[test]]
name = "memory_boundedness"
path = "tests/memory_boundedness.rs"
[[test]]
name = "msrv_tests"
path = "tests/msrv_tests.rs"
[[test]]
name = "optimization_tests"
path = "tests/optimization_tests.rs"
[[bench]]
name = "performance"
path = "benches/performance.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
features = ["std"]
[dependencies.clap]
version = "4.5.41"
features = ["derive"]
optional = true
[dependencies.console]
version = "0.15"
optional = true
[dependencies.hmac]
version = "0.12"
[dependencies.indicatif]
version = "0.17"
optional = true
[dependencies.pbkdf2]
version = "0.12"
[dependencies.rand]
version = "0.9.2"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.2.0"
[dependencies.thiserror]
version = "1.0"
optional = true
[dependencies.typenum]
version = "1.12"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]