wow-cdbc 0.6.4

Parser for World of Warcraft DBC (client database) files with serialization support
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 = "2024"
rust-version = "1.92"
name = "wow-cdbc"
version = "0.6.4"
authors = ["Daniel S. Reichenbach <daniel@kogito.network>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for World of Warcraft DBC (client database) files with serialization support"
homepage = "https://github.com/wowemulation-dev/warcraft-rs"
documentation = "https://docs.rs/wow-cdbc"
readme = "README.md"
keywords = [
    "wow",
    "warcraft",
    "dbc",
    "database",
    "gamedev",
]
categories = [
    "game-development",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wowemulation-dev/warcraft-rs"
resolver = "2"

[features]
cli = [
    "dep:clap",
    "yaml",
    "serde",
    "csv_export",
    "dep:env_logger",
]
csv_export = [
    "dep:csv",
    "serde",
]
default = []
mmap = ["dep:memmap2"]
parallel = ["dep:rayon"]
serde = [
    "dep:serde",
    "dep:serde_json",
]
yaml = [
    "dep:serde_yaml_ng",
    "serde",
]

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

[[bin]]
name = "dbc_schema_discovery_tool"
path = "src/bin/dbc_schema_discovery_tool.rs"
required-features = ["cli"]

[[bin]]
name = "dbc_tool"
path = "src/bin/dbc_tool.rs"
required-features = ["cli"]

[[bin]]
name = "dbd_to_yaml"
path = "src/bin/dbd_to_yaml.rs"
required-features = ["cli"]

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

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

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

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

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

[dependencies.binrw]
version = "0.15.0"

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.csv]
version = "1.4"
optional = true

[dependencies.env_logger]
version = "0.11"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.memmap2]
version = "0.9"
optional = true

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

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

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

[dependencies.serde_yaml_ng]
version = "0.10"
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.pretty_assertions]
version = "1.4"

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

[dev-dependencies.test-case]
version = "3.3"