figsoda 2023-03-25 22:32:13 -04:00
parent 5c329ec862
commit 44020f0c77
2 changed files with 15 additions and 3 deletions

View file

@ -125,7 +125,7 @@ dependencies = [
[[package]]
name = "cargo-release"
version = "0.24.6"
version = "0.24.8"
dependencies = [
"anyhow",
"assert_fs",
@ -1256,6 +1256,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.25.2+1.1.1t"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.80"
@ -1265,6 +1274,7 @@ dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]

View file

@ -11,13 +11,13 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-release";
version = "0.24.6";
version = "0.24.8";
src = fetchFromGitHub {
owner = "crate-ci";
repo = "cargo-release";
rev = "refs/tags/v${version}";
hash = "sha256-IB+p2pxS+ycPlHgURujBDPppkgF8SjTBa+j1qvzFbjc=";
hash = "sha256-cnewZXIgNUtzJk7GQZKdqUZCbp46xYULZKh0A7/La4k=";
};
cargoLock = {
@ -42,6 +42,8 @@ rustPlatform.buildRustPackage rec {
git
];
OPENSSL_NO_VENDOR = true;
meta = with lib; {
description = ''Cargo subcommand "release": everything about releasing a rust crate'';
homepage = "https://github.com/crate-ci/cargo-release";