-
Notifications
You must be signed in to change notification settings - Fork 10
chore: updated packages and change to rust edition 2024 #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughThis pull request updates dependency versions in the project’s Cargo manifests, refines test files by removing unused imports and binary serialization checks, and adjusts serialization for the U256 struct by incorporating bincode’s encoding and decoding traits. Additionally, an entire test suite regarding serde regression has been removed. Overall, the changes simplify certain tests and improve the clarity and efficiency of binary serialization operations within the codebase. Changes
Sequence Diagram(s)sequenceDiagram
participant T as Test
participant U as U256
participant B as bincode
T->>U: Create U256 instance
T->>B: Call encode_to_vec(instance)
B-->>T: Return binary data
T->>B: Call decode_from_slice(binary data)
B-->>T: Return decoded U256 instance
Poem
Tip ⚡💬 Agentic Chat (Pro Plan, General Availability)
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (125)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Still having issues with Fuzz tests, they should go away when we upgrade bincode. |
Summary by CodeRabbit
Chores
Tests