-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump directories 5 -> 6 #19
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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" | ||
| iced = "0.13.1" | ||
|
Comment on lines
9
to
11
|
||
| iced_aw = { version = "0.11.0", default-features = false, features = ["grid", "number_input", "tab_bar"] } | ||
| iced_fonts = { version = "0.1.1", features = [] } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bumping
directoriesto 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.There was a problem hiding this comment.
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.