source-vmt 0.3.0

Rust parser and manager for Source Engine VMT files, supporting patch inheritance, material proxies, and key interning
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"
name = "source-vmt"
version = "0.3.0"
authors = ["LaVashikk <contact@lavashik.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust parser and manager for Source Engine VMT files, supporting patch inheritance, material proxies, and key interning"
readme = "README.md"
keywords = [
    "source-engine",
    "sdk",
    "gamedev",
]
categories = ["game-development"]
license = "MIT"
repository = "https://github.com/LaVashikk/SourceRS/tree/main/crates/source-vmt"

[features]
default = []
intern_keys = ["dep:dashmap"]
material_system = ["dep:source-fs"]

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

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

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

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

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

[[test]]
name = "test_block"
path = "tests/test_block.rs"

[[test]]
name = "test_patch"
path = "tests/test_patch.rs"

[[test]]
name = "test_proxies"
path = "tests/test_proxies.rs"

[[test]]
name = "test_vmt"
path = "tests/test_vmt.rs"

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

[dependencies.dashmap]
version = "5.5"
optional = true

[dependencies.indexmap]
version = "2.2"
features = ["serde"]

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

[dependencies.source-fs]
version = "0.3.0"
optional = true

[dependencies.source-kv]
version = "0.3.0"

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