wz_reader 0.0.17

A wz file reader to resolve wz file with thread safe
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 = "wz_reader"
version = "0.0.17"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A wz file reader to resolve wz file with thread safe"
homepage = "https://github.com/spd789562/wz-reader-rs"
documentation = "https://docs.rs/wz_reader"
readme = "README.md"
keywords = [
    "wz",
    "maplestory",
    "wzlib",
]
categories = ["parsing"]
license-file = "LICENSE.txt"
repository = "https://github.com/spd789562/wz-reader-rs"

[features]
default = [
    "rayon",
    "zlib-ng",
]
json = [
    "serde",
    "dep:serde_json",
]
rayon = [
    "dep:rayon",
    "image/rayon",
]
serde = [
    "dep:serde",
    "hashbrown/serde",
]
zlib-ng = ["flate2/zlib-ng"]

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

[[example]]
name = "extracting_lua"
path = "examples/extracting_lua.rs"

[[example]]
name = "extracting_pngs"
path = "examples/extracting_pngs.rs"
required-features = ["image/png"]

[[example]]
name = "extracting_sounds"
path = "examples/extracting_sounds.rs"

[[example]]
name = "id_to_name"
path = "examples/id_to_name.rs"

[[example]]
name = "name_to_id"
path = "examples/name_to_id.rs"

[[example]]
name = "parallel_parse_wz_image"
path = "examples/parallel_parse_wz_image.rs"

[[example]]
name = "parse_ms_file"
path = "examples/parse_ms_file.rs"

[[example]]
name = "parse_single_img_file"
path = "examples/parse_single_img_file.rs"
required-features = ["image/png"]

[[example]]
name = "pet_equip_matcher"
path = "examples/pet_equip_matcher.rs"

[[example]]
name = "single_file"
path = "examples/single_file.rs"

[[example]]
name = "with_axum"
path = "examples/with_axum.rs"
required-features = [
    "json",
    "image/default-formats",
]

[[example]]
name = "wz_to_json"
path = "examples/wz_to_json.rs"
required-features = ["json"]

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

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

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

[dependencies.aes]
version = "0.8.4"

[dependencies.c2-chacha]
version = "0.3.3"

[dependencies.ecb]
version = "0.1.2"

[dependencies.flate2]
version = "1.1.4"
default-features = false

[dependencies.hashbrown]
version = "0.14.3"

[dependencies.image]
version = "0.25.0"
default-features = false

[dependencies.memmap2]
version = "0.9.4"

[dependencies.rayon]
version = "1.9.0"
optional = true

[dependencies.scroll]
version = "0.12.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.texture2ddecoder]
version = "0.1.2"

[dependencies.thiserror]
version = "1.0.57"

[dev-dependencies.axum]
version = "0.7.5"

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

[dev-dependencies.serde_json]
version = "1.0"

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

[dev-dependencies.tokio]
version = "1.0"
features = ["full"]