[package]
edition = "2024"
rust-version = "1.85.0"
name = "workshop-rs"
version = "0.1.15"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Canonical multi-locale Overwatch Workshop semantic core: catalog, parser, WIR, validation, emitter."
readme = false
license = "MIT"
repository = "https://github.com/wrightkit/workshop-rs"
[lib]
name = "workshop_rs"
path = "src/lib.rs"
[[bin]]
name = "workshop-catalog-gen"
path = "src/bin/workshop-catalog-gen.rs"
[[test]]
name = "action_layout"
path = "tests/action_layout.rs"
[[test]]
name = "catalog"
path = "tests/catalog.rs"
[[test]]
name = "closure"
path = "tests/closure.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "detect"
path = "tests/detect.rs"
[[test]]
name = "element_count"
path = "tests/element_count.rs"
[[test]]
name = "emitter"
path = "tests/emitter.rs"
[[test]]
name = "gameplay"
path = "tests/gameplay.rs"
[[test]]
name = "gameplay_data"
path = "tests/gameplay_data.rs"
[[test]]
name = "gameplay_query"
path = "tests/gameplay_query.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "language_conformance"
path = "tests/language_conformance.rs"
[[test]]
name = "locale"
path = "tests/locale.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "rule_events"
path = "tests/rule_events.rs"
[[test]]
name = "settings_pipeline"
path = "tests/settings_pipeline.rs"
[[test]]
name = "wir_expansion"
path = "tests/wir_expansion.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dev-dependencies.regex]
version = "1"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
unreachable_pub = "deny"
unsafe_op_in_unsafe_fn = "deny"