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
121 changes: 33 additions & 88 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
name = "easy_flash_daplink"
version = "0.2.0"
edition = "2021"
# Pinned to the highest MSRV among our direct deps (currently iced 0.13).
rust-version = "1.80"

[dependencies]
async-io = "2"
directories = "5.0.1"
directories = "6"
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.

Bumping directories to v6 can change the resolved data directory on Windows/macOS (per upstream’s platform path tightening). Since CI currently only runs on Ubuntu, consider adding at least a basic Windows/macOS build/smoke test (or explicitly documenting that Linux is the only supported platform) to avoid shipping a silent settings-location change on those platforms.

Suggested change
directories = "6"
directories = "5"

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 the suggestion to revert to directories = "5" — the whole point of this PR is to take the major bump (one of the held-back items from #16). The Win/Mac path-resolution tightening you mention is real but is upstream's call, not something to dodge by staying on 5 forever. Cross-platform smoke test in CI is a fair separate ask, tracked-worthy if you want me to file an issue. For Linux (the only platform actually shipped today via release.yaml) the path layout under ~/.local/share/daplink-easyflash/ is unchanged.

iced = "0.13.1"
Comment on lines 9 to 11
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.

directories v6 drops support for older Rust toolchains; since the project doesn’t currently declare an MSRV (no rust-version in [package]), it may be worth adding one so users get a clear error if they build with an older compiler than your supported baseline.

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.

Fixed in d6013c1 — added rust-version = "1.80" to [package]. Picked 1.80 to match the highest MSRV among current direct deps (iced 0.13); the upcoming iced 0.14 PR (#18) will bump it to 1.88 as part of that change.

iced_aw = { version = "0.11.0", default-features = false, features = ["grid", "number_input", "tab_bar"] }
iced_fonts = { version = "0.1.1", features = [] }
Expand Down
Loading