hadris 1.1.2

A collection of crates for working with various file formats.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "hadris"
version = "1.1.2"
authors = ["hxyulin"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of crates for working with various file formats."
readme = "README.md"
keywords = [
    "filesystem",
    "iso9660",
    "fat32",
    "udf",
    "cpio",
]
categories = [
    "filesystem",
    "encoding",
]
license = "MIT"
repository = "https://github.com/hxyulin/hadris"
resolver = "2"

[features]
async = [
    "hadris-iso?/async",
    "hadris-fat?/async",
    "hadris-udf?/async",
    "hadris-cpio?/async",
]
cpio = ["dep:hadris-cpio"]
default = [
    "iso9660",
    "fat",
    "cpio",
]
fat = ["dep:hadris-fat"]
iso9660 = ["dep:hadris-iso"]
sync = [
    "hadris-iso?/sync",
    "hadris-fat?/sync",
    "hadris-udf?/sync",
    "hadris-cpio?/sync",
]
udf = ["dep:hadris-udf"]

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

[dependencies.hadris-cpio]
version = "1.1.2"
features = [
    "std",
    "read",
    "write",
]
optional = true
default-features = false

[dependencies.hadris-fat]
version = "1.1.2"
features = [
    "std",
    "read",
    "write",
    "lfn",
]
optional = true
default-features = false

[dependencies.hadris-iso]
version = "1.1.2"
features = [
    "std",
    "write",
]
optional = true
default-features = false

[dependencies.hadris-udf]
version = "1.1.2"
features = [
    "std",
    "read",
]
optional = true
default-features = false