[package]
edition = "2021"
rust-version = "1.70"
name = "whiteoutlib"
version = "0.1.4"
authors = ["Fernando Sahmkow <fsahmkow27@gmail.com>"]
build = "build.rs"
links = "whiteout_native"
include = [
"src/**/*.rs",
"tests/**/*.rs",
"build.rs",
"README.md",
"LICENSE",
"native/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read and write Blizzard game assets from Rust: models (MDX, M2, M3), textures (BLP, DDS, PNG, JPEG, BMP, TGA, TIFF, GIF) and archives (CASC, MPQ)."
documentation = "https://docs.rs/whiteoutlib"
readme = "README.md"
keywords = [
"wow",
"warcraft",
"starcraft",
"mdx",
"blp",
]
categories = [
"game-development",
"parser-implementations",
]
license = "BSD-3-Clause"
repository = "https://github.com/FernandoS27/WhiteoutLib"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
casc = []
default = ["vendored"]
mpq = []
vendored = ["dep:cmake"]
[lib]
name = "whiteout"
path = "src/lib.rs"
[[test]]
name = "host"
path = "tests/host.rs"
[[test]]
name = "host_async"
path = "tests/host_async.rs"
[[test]]
name = "math"
path = "tests/math.rs"
[[test]]
name = "mdx"
path = "tests/mdx.rs"
[[test]]
name = "models"
path = "tests/models.rs"
[[test]]
name = "storages"
path = "tests/storages.rs"
[[test]]
name = "textures"
path = "tests/textures.rs"
[dependencies]
[dev-dependencies]
[build-dependencies.cmake]
version = "0.1"
optional = true