wim-parser 0.1.2

A Rust library for parsing Windows Imaging (WIM) files
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 = "2021"
name = "wim-parser"
version = "0.1.2"
authors = ["junjiangao <junjiangao@github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for parsing Windows Imaging (WIM) files"
homepage = "https://github.com/junjiangao/wim-parser"
documentation = "https://docs.rs/wim-parser"
readme = "README.md"
keywords = [
    "wim",
    "windows",
    "imaging",
    "parser",
    "archive",
]
categories = [
    "parsing",
    "filesystem",
]
license = "MIT"
repository = "https://github.com/junjiangao/wim-parser"

[features]
benchmarking = []
default = ["logging"]
logging = ["tracing"]

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
required-features = ["logging"]

[[example]]
name = "performance_comparison"
path = "examples/performance_comparison.rs"
required-features = ["benchmarking"]

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

[[bench]]
name = "xml_parsing"
path = "benches/xml_parsing.rs"
harness = false

[dependencies.anyhow]
version = "1.0.102"

[dependencies.encoding_rs]
version = "0.8.35"

[dependencies.quick-xml]
version = "0.40.1"

[dependencies.tracing]
version = "0.1.44"
optional = true

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.tempfile]
version = "3.27.0"

[dev-dependencies.tracing-subscriber]
version = "0.3.23"