-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
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
cargo-flash: init at 0.8.0 #86221
cargo-flash: init at 0.8.0 #86221
Conversation
@GrahamcOfBorg build cargo-flash |
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.
Looks good to me in general! Left some nitpicky comments, sorry :)
[[package]] | ||
name = "gdb-server" | ||
-version = "0.6.0" | ||
+version = "0.6.1" | ||
+source = "registry+https://github.com/rust-lang/crates.io-index" | ||
+checksum = "c6e7b1809fa47255da438a2bddec1ec92e8d35628877c4dc24b44c86c3ba64f7" | ||
dependencies = [ | ||
"async-std", | ||
"futures", | ||
@@ -955,7 +957,9 @@ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" | ||
|
||
[[package]] | ||
name = "probe-rs" | ||
-version = "0.6.0" | ||
+version = "0.6.2" | ||
+source = "registry+https://github.com/rust-lang/crates.io-index" | ||
+checksum = "9b4508248f016eb7f7a50751b9c3e8f9e25add169feac006aef5115dbb5e42be" | ||
dependencies = [ | ||
"base64", | ||
"bitfield", |
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.
These dependency versions are pinned precisely in the upstream Cargo.toml
; if there's fixes from the new versions that are important to pick up, it would probably be a good idea to send a PR bumping the Cargo.{toml,lock}
upstream.
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.
Indeed. I guess they do this on purpose, to keep the version in sync. However, the build breaks without this. What do we do here?
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.
Huh, that build error is really strange; for some reason cargo is insistent on updating probe-rs to a version that isn't what the Cargo.toml specifies, even though the versions specified aren't yanked or anything.
I think patching the lock file is reasonable for now, but bumping the versions evidently fixes things for users (us!) in practice, it'd be nice if the cargo-flash upstream could tag a new release with them.
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.
cargo is insistent on updating probe-rs to a version that isn't what the Cargo.toml specifies
A few days ago I heard about this behavior to be intentional, cargo updates dependencies sometimes even if passed the --frozen
argument and a Cargo.lock
. The docs for --frozen
state this (which implicitly explains the observation):
Either of these flags requires that the Cargo.lock file is up-to-date. If the lock file is missing, or it needs to be updated, Cargo will exit with an error.
@GrahamcOfBorg build cargo-flash |
@GrahamcOfBorg build cargo-flash |
src = fetchFromGitHub { | ||
owner = "probe-rs"; | ||
repo = pname; | ||
rev = "v" + version; |
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.
Suggested change:
rev = "v" + version; | |
rev = "v${version}"; |
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.
IIRC I once got the feedback to do the swap the other way round, as string interpolation is supposed to be more expensive than string concatenation. Is that wrong? I'm eager to know any rational to promote either the one or the other style.
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.
I don't think it has much to do with speed, rather consistency and just the code being prettier. Reading the rev takes almost no time anyway, that doesn't really matter.
There's 9 instances of rev = "v" + version;
being used throughout the codebase, versus the 1957 instances of rev = "v${version}";
. For consistency's sake thats much better.
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.
Whatever 😆
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.
maybe also this? :D
|
||
meta = with stdenv.lib; { | ||
description = "A cargo subcommand to flash ELF binaries onto ARM chips"; | ||
homepage = "https://github.com/probe-rs/" + pname; |
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.
A copy-pastable URL is probably better:
homepage = "https://github.com/probe-rs/" + pname; | |
homepage = "https://github.com/probe-rs/cargo-flash"; |
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.
Hmmh, sure
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.
said yes, didn't do it :P
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.
Maybe now?
296f2a1
to
48574fe
Compare
@GrahamcOfBorg build cargo-flash |
@GrahamcOfBorg build cargo-flash |
needs a rebase |
@Lassulus Thanks, done! |
superseded by #96164 |
Motivation for this change
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)