Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ miette.workspace = true
serde.workspace = true
thiserror.workspace = true
toml.workspace = true
toml_edit = "0.23.7"
Copy link

Copilot AI Nov 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The dependency uses a specific patch version 0.23.7 instead of a more flexible version specification like "0.23". Consider using a more lenient version specification (e.g., "0.23" or "0.23.7" with a caret ^0.23.7) to allow for patch updates that might include bug fixes. Pinning to an exact version can prevent automatic security updates.

Suggested change
toml_edit = "0.23.7"
toml_edit = "^0.23.7"

Copilot uses AI. Check for mistakes.

[dev-dependencies]
tempfile.workspace = true
Loading