httplz: 1.12.6 -> 1.13.0

Diff: https://diff.rs/https/1.12.6/1.13.0

Changelog: https://github.com/thecoshman/http/releases/tag/v1.13.0
This commit is contained in:
figsoda 2023-07-14 20:52:46 -04:00
parent 0734b7d3df
commit 70ae1f4f8b

View File

@ -12,15 +12,15 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "httplz"; pname = "httplz";
version = "1.12.6"; version = "1.13.0";
src = fetchCrate { src = fetchCrate {
inherit version; inherit version;
pname = "https"; pname = "https";
sha256 = "sha256-qkhou4Rmv31zwyL8aM7U0YUZwOb3KQMHdOQsOrRI1TA="; hash = "sha256-sTkj2UkUENpezPFAzyDUz6rC4F0G864uLLYOU9fyXjo=";
}; };
cargoSha256 = "sha256-BuNCKtK9ePV0d9o/DlW098Y4DWTIl0YKyryXMv09Woc="; cargoHash = "sha256-omjm+NSny1NLUj9MCeGU6XgrVRAxMJzTbvIyfmWgoCU=";
nativeBuildInputs = [ nativeBuildInputs = [
installShellFiles installShellFiles
@ -46,6 +46,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "A basic http server for hosting a folder fast and simply"; description = "A basic http server for hosting a folder fast and simply";
homepage = "https://github.com/thecoshman/http"; homepage = "https://github.com/thecoshman/http";
changelog = "https://github.com/thecoshman/http/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ figsoda ]; maintainers = with maintainers; [ figsoda ];
}; };