scraper: 0.15.0 -> 0.16.0

Changelog: https://github.com/causal-agent/scraper/releases/tag/v0.16.0
This commit is contained in:
figsoda 2023-04-04 16:58:51 -04:00
parent 6ab58617f3
commit 162ca51054

View file

@ -1,17 +1,15 @@
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
{ lib, rustPlatform, fetchCrate, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "scraper";
version = "0.15.0";
version = "0.16.0";
src = fetchFromGitHub {
owner = "causal-agent";
repo = "scraper";
rev = "v${version}";
hash = "sha256-K0MeZeS60gxo0/kBCaffNVQrR5S1HDoq77hnC//LMQg=";
src = fetchCrate {
inherit pname version;
hash = "sha256-3FxEfrScOetB1raiT9xjq9G2xLrLZqVlkqbVAFCIhZ0=";
};
cargoHash = "sha256-2IvfJaYyX7ZA1y3TETydb7wXRER4CfH69xEvnxKCFTc=";
cargoHash = "sha256-Pf8+vvOvOHpuJ2v7iwdVzHwneqvhk2E4nbGO4TL/FAM=";
nativeBuildInputs = [ installShellFiles ];