bg3rustpaklib 0.1.2

A Rust library for reading and extracting Baldur's Gate 3 PAK files
Documentation
[package]

name = "bg3rustpaklib"

version = "0.1.2"
edition = "2021"

authors = ["bg3rustpaklib contributors"]

description = "A Rust library for reading and extracting Baldur's Gate 3 PAK files"

license = "MIT"

repository = "https://github.com/defakof/bg3rustpaklib"

keywords = ["baldurs-gate-3", "bg3", "pak", "lspk", "modding"]

categories = ["parsing", "game-development"]



[dependencies]

thiserror = "2"

memmap2 = "0.9"

lz4_flex = "0.11"

zstd = "0.13"

flate2 = "1.0"

byteorder = "1.5"

bytes = "1"

glob = "0.3"

regex = "1"

md5 = "0.7"



[dependencies.tokio]

version = "1"

features = ["fs", "io-util", "sync", "rt"]

optional = true



[features]

default = []

async = ["tokio"]



[dev-dependencies]

tempfile = "3"