[package]
edition = "2024"
rust-version = "1.85.0"
name = "workshop-rs"
version = "0.6.0"
build = "build.rs"
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 = "integration"
path = "tests/integration.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.unicode-ident]
version = "1"
[dev-dependencies.regex]
version = "1"
[build-dependencies.serde_json]
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"