bg3rustpaklib 0.1.0

A Rust library for reading and extracting Baldur's Gate 3 PAK 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 = "bg3rustpaklib"
version = "0.1.0"
authors = ["bg3rustpaklib contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for reading and extracting Baldur's Gate 3 PAK files"
readme = "README.md"
keywords = [
    "baldurs-gate-3",
    "bg3",
    "pak",
    "lspk",
    "modding",
]
categories = [
    "parsing",
    "game-development",
]
license = "MIT"
repository = "https://github.com/example/bg3rustpaklib"

[features]
async = ["tokio"]
default = []

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

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

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

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

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

[dependencies.byteorder]
version = "1.5"

[dependencies.bytes]
version = "1"

[dependencies.flate2]
version = "1.0"

[dependencies.glob]
version = "0.3"

[dependencies.lz4_flex]
version = "0.11"

[dependencies.md5]
version = "0.7"

[dependencies.memmap2]
version = "0.9"

[dependencies.regex]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "fs",
    "io-util",
    "sync",
    "rt",
]
optional = true

[dependencies.zstd]
version = "0.13"

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