[package]
edition = "2021"
rust-version = "1.74"
name = "isomage"
version = "2.1.0"
authors = ["Jack Danger <github@jackdanger.com>"]
build = false
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/Cargo.lock",
"/CHANGELOG.md",
"/LICENSE",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust reader for ISO 9660, UDF, FAT, ext2/3/4, NTFS, HFS+, SquashFS, ZIP, TAR, and more. No unsafe, no runtime deps."
homepage = "https://github.com/JackDanger/isomage"
documentation = "https://docs.rs/isomage"
readme = "README.md"
keywords = [
"iso",
"iso9660",
"udf",
"bluray",
"filesystem",
]
categories = [
"filesystem",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/JackDanger/isomage"
[features]
apfs = []
bzip2 = []
default = [
"iso",
"udf",
]
deflate-gzippy = []
dmg = []
exfat = []
experimental = []
ext = []
fat = []
gpt = []
hfsplus = []
iso = []
lz4 = []
lzma = []
mbr = []
mmap = ["dep:memmap2"]
ntfs = []
qcow2 = []
raw = [
"mbr",
"gpt",
]
simd = []
squashfs = []
tar = []
udf = []
vhd = []
vhdx = []
vmdk = []
wim = []
write = []
zip = []
zstd = []
[lib]
name = "isomage"
path = "src/lib.rs"
[dependencies.memmap2]
version = "0.9"
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 2
lto = true
codegen-units = 1