Merge pull request #278614 from newAM/probe-rs-0.22.0

probe-rs: 0.21.1 -> 0.22.0
This commit is contained in:
Nick Cao 2024-01-04 10:58:49 -05:00 committed by GitHub
commit bf566c9a49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ lib
, stdenv
, rustPlatform
, fetchCrate
, fetchFromGitHub
, pkg-config
, libusb1
, openssl
@ -11,14 +11,16 @@
rustPlatform.buildRustPackage rec {
pname = "probe-rs";
version = "0.21.1";
version = "0.22.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-UmQwz9Ejb5+epwGKsglV3QdWGqOEH/3DRqvKtfm14kg=";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-7bWx6ZILqdSDY/q51UP/BuCgMH0F4ePMSnclHeF2DY4=";
};
cargoHash = "sha256-awa84xvIRrEhuPm4N2xt5bsYy2wbLjJokrKoAxCYvR4=";
cargoHash = "sha256-ynmKmXQrUnTcmo0S7FO+l/9EPuzgLCdUOPLuwoG4pbU=";
cargoBuildFlags = [ "--features=cli" ];