[package]
edition = "2024"
rust-version = "1.92"
name = "wow-wmo"
version = "0.7.0"
authors = ["Daniel S. Reichenbach <daniel@kogito.network>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser, editor, and converter for World of Warcraft WMO (World Model Object) files"
homepage = "https://github.com/wowemulation-dev/warcraft-rs"
readme = "README.md"
keywords = [
"wow",
"warcraft",
"wmo",
"parser",
"gamedev",
]
categories = [
"game-development",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wowemulation-dev/warcraft-rs"
resolver = "2"
[lib]
name = "wow_wmo"
path = "src/lib.rs"
[[bin]]
name = "debug_chunks"
path = "src/bin/debug_chunks.rs"
[[test]]
name = "api_test"
path = "tests/api_test.rs"
[[test]]
name = "chunk_discovery_test"
path = "tests/chunk_discovery_test.rs"
[[test]]
name = "comprehensive_parsing_test"
path = "tests/comprehensive_parsing_test.rs"
[[test]]
name = "file_type_test"
path = "tests/file_type_test.rs"
[[test]]
name = "gfid_chunk_test"
path = "tests/gfid_chunk_test.rs"
[[test]]
name = "group_parser_test"
path = "tests/group_parser_test.rs"
[[test]]
name = "malformed_test"
path = "tests/malformed_test.rs"
[[test]]
name = "missing_chunks_test"
path = "tests/missing_chunks_test.rs"
[[test]]
name = "morb_chunk_test"
path = "tests/morb_chunk_test.rs"
[[test]]
name = "mori_chunk_test"
path = "tests/mori_chunk_test.rs"
[[test]]
name = "root_parser_test"
path = "tests/root_parser_test.rs"
[[test]]
name = "version_detection_test"
path = "tests/version_detection_test.rs"
[[bench]]
name = "parser_benchmarks"
path = "benches/parser_benchmarks.rs"
harness = false
[dependencies.binrw]
version = "0.15.0"
[dependencies.bitflags]
version = "2.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.test-case]
version = "3.3"