[package]
name = "include_packed"
version = "0.1.5"
edition = "2024"
license = "MIT"
repository = "https://github.com/xangelix/include_packed"
documentation = "https://docs.rs/include_packed"
description = "Include large, compressed binary files in an application without the compile time cost of `include_bytes!`"
categories = ["development-tools::build-utils", "compression"]
keywords = ["include", "bytes", "file", "zstd", "compression"]
readme = "../README.md"
[features]
build = ["dep:object", "dep:thiserror"]
[dependencies]
include_packed_macros = { path = "../include_packed_macros", version = "0.1" }
zstd = { version = "0.13", default-features = false }
object = { version = "0.37", default-features = false, features = [
"write",
], optional = true }
thiserror = { version = "2", optional = true }
[dev-dependencies]
which = "8"