Closed welbon closed 3 months ago
This update primarily enhances the project by upgrading dependency versions, particularly the futures
crate, and modifying various components to improve clarity and functionality. Key changes include renaming parameters from type_params
to type_args
across multiple files and refining function signatures for better readability and usability. Overall, these adjustments aim to streamline the codebase, improve performance, and facilitate future development.
File(s) | Change Summary |
---|---|
Cargo.toml |
Updated dependency versions, including futures from 0.3.12 to 0.3.30 , and modified revision identifiers for various move project dependencies. |
abi/resolver/src/lib.rs , abi/types/src/lib.rs |
Renamed type_params to type_args for better clarity. Updated method signatures to reflect new parameter names. |
vm/compiler/src/lib.rs , vm/stdlib/src/lib.rs |
Modified function signatures to include additional parameters, enhancing functionality and readability. |
vm/gas-algebra-ext/src/instr.rs , vm/gas-algebra-ext/src/move_stdlib.rs , vm/gas-algebra-ext/src/transaction.rs |
Significant refactoring, including removal of methods and simplification of gas cost calculations. |
vm/types/src/*.rs |
Renamed multiple instances of type_params to type_args across several files, improving consistency in naming conventions. |
vm/types/src/account_config/*.rs , vm/types/src/on_chain_resource/*.rs |
Multiple fields renamed from type_params to type_args , ensuring clarity in resource configurations. |
sequenceDiagram
participant User
participant Application
participant Dependencies
User->>Application: Request for functionality
Application->>Dependencies: Resolve needed components
Dependencies->>Application: Provide updated components
Application->>User: Return enhanced functionality
🐰 "In the code, a dance we weave,
With parameters named anew, believe!
Upgrades and changes bring cheer,
Functionality blooms, oh dear!
Hopping through lines, we code with glee,
A brighter future, just wait and see!" 🐇✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
@welbon We can use the same serde version , serde = "1.0.193"
Pull request type
Please check the type of change your PR introduces:
What is the current behavior?
Issue Number: N/A
What is the new behavior?
-
-
Other information
Summary by CodeRabbit
New Features
Bug Fixes
Refactor
type_params
totype_args
across multiple modules for clarity.Chores