[package]
edition = "2024"
rust-version = "1.85"
name = "maya-mel"
version = "0.1.4"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Single-entry Autodesk Maya MEL parsing and analysis library."
documentation = "https://docs.rs/maya-mel"
readme = "README.md"
keywords = [
"maya",
"mel",
"parser",
"analysis",
]
categories = ["parser-implementations"]
license = "MIT"
repository = "https://github.com/yamahigashi/MayaMelParser"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "maya_mel"
path = "src/lib.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "significant_tokens"
path = "tests/significant_tokens.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.text-size]
version = "1"
[dev-dependencies.encoding_rs]
version = "0.8"
[build-dependencies.serde]
version = "1"
features = ["derive"]
[build-dependencies.serde_json]
version = "1"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"