Centralize glam and ordered-float versions#100
Conversation
Reviewer's GuideThis PR centralizes the version specifications for glam and ordered-float by declaring them once under [workspace.dependencies] in Cargo.toml and updates all individual references to use the workspace-defined versions (workspace = true) instead of hardcoded version strings. Class diagram for Cargo.toml dependency management changesclassDiagram
class Workspace {
+glam: 0.24
+ordered-float: 2
}
class MainCrate {
+glam: workspace = true
+ordered-float: workspace = true
}
Workspace <|-- MainCrate: uses dependencies from
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Summary by CodeRabbit
WalkthroughThe dependency management in the Changes
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (3)
✨ Finishing Touches🧪 Generate Unit Tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. 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 (
|
|
@sourcery-ai review |
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
Summary
[workspace.dependencies]Testing
make fmtmake markdownlintmake lintmake testhttps://chatgpt.com/codex/tasks/task_e_685b2e36c26883228ff955f0b3c05977
Summary by Sourcery
Centralize the version requirements for glam and ordered-float in the workspace manifest and update crate references to use workspace dependencies
Enhancements:
Build: