Open
Conversation
195a8f9 to
94950a4
Compare
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.
Description
This pull request updates dependencies and tooling across multiple smart contract modules to ensure compatibility with newer versions of CosmWasm and Rust, and improves build optimization. The most important changes are grouped below by theme.
Dependency upgrades across contracts:
cosmwasm-stdandcosmwasm-schemato version2.3.2, andthiserrorto2.0.18in all affected contract modules for improved compatibility and stability. [1] [2] [3] [4]schemarsandserdeversions to address potential serialization and schema issues, and updatedprostto0.13.5where applicable. [1] [2] [3] [4]Build and optimization improvements:
cosmwasm/rust-optimizer:0.12.6to0.16.1for improved build performance and compatibility.Tooling and SDK changes:
tx-wasm-sdkdependency from a git commit to a tagged release (v1.3.0) in all relevant contracts, ensuring reproducible builds and easier maintenance. [1] [2] [3]rust-toolchain.tomlfiles to specify Rust toolchain version1.81.0and targetwasm32-unknown-unknownfor all contract modules, ensuring consistent development environments.These updates collectively ensure all contract modules use the latest stable dependencies and tooling, improving reliability and maintainability.
Reviewers checklist:
Authors checklist
This change is