Skip to content
Open
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
99 changes: 80 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ iced = "0.13.1"
iced_aw = { version = "0.11.0", default-features = false, features = ["grid", "number_input", "tab_bar"] }
iced_fonts = { version = "0.1.1", features = [] }
rfd = { version = "0.15.0", default-features = false, features = ["gtk3"] }
sysinfo = "0.31.4"
sysinfo = "0.38"
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

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

This changes the sysinfo requirement from a fully pinned patch version (0.31.4) to an unpinned minor (0.38), which will allow future 0.38.x upgrades without a manifest change. If you want to keep dependency versioning consistent/predictable, consider pinning to the specific patch you validated (e.g. 0.38.4).

Suggested change
sysinfo = "0.38"
sysinfo = "0.38.4"

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Declining — staying with the caret-style minor pin ("0.38">=0.38.0, <0.39.0) keeps this consistent with the rest of Cargo.toml (e.g. iced = "0.14", directories = "6", async-io = "2"). Reproducibility is enforced via Cargo.lock, which CI uses with --locked. Pinning to a specific patch in Cargo.toml would be stricter than our current convention without giving us anything Cargo.lock doesn't already.

serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serialport = "4.7.1"
Expand Down
Loading