fix(consumer): preserve compatibility with workshop-rs rule events - #163
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Consumes the released crates.io
workshop-rs =0.1.1contract and preserves Wright's consumer compatibility for the expanded publicEventsurface.Cargo.tomluses the exact registry requirementworkshop-rs = "=0.1.1".Cargo.lockresolvesworkshop-rsfrom crates.io with the recorded checksum; no GitHub source remains for this dependency.Event::EachPlayeras the legacy/default representation.EachPlayerWithFilters { All, All }as semantically equivalent in analyzer, OPY reconstruction, and OSTW reconstruction.Validation
Validated against the released
workshop-rs v0.1.1package:cargo info [email protected]: registry package available, Rust 1.85 minimum;cargo fmt --all --check: pass;cargo clippy --locked --workspace --all-targets --all-features -- -D warnings: pass;cargo test --locked --workspace --all-targets --all-features: pass;cargo build --locked --release -p wright-cli -p wright-lsp -p wright-bench: pass;python3 scripts/v1-gates.py --wright target/release/wright: 6/6 passed;python3 scripts/run-scenarios.py --wright target/release/wright: 7/7 passed;target/release/wright-bench: no regressions, peak RSS 8.72 MB;workshop-rs 0.1.1from the crates.io registry;32065747320: 12/12 checks passed, including stable/MSRV, LPP, differential, release gates, and all distribution platforms.The existing event consumer changes remain unchanged; this follow-up only replaces the temporary source pin with the released crates.io contract. Ready for merge; all current CI checks pass.
Fixes #163