Merge pull request #254457 from figsoda/rsonpath

rsonpath: 0.7.1 -> 0.8.0

authored by Mario Rodas and committed by GitHub 4f3a2bcc a607edd7

+3 -7
+3 -7
pkgs/development/tools/misc/rsonpath/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , rustPlatform 4 3 , fetchFromGitHub 5 - , withSimd ? stdenv.isx86_64 6 4 }: 7 5 8 6 rustPlatform.buildRustPackage rec { 9 7 pname = "rsonpath"; 10 - version = "0.7.1"; 8 + version = "0.8.0"; 11 9 12 10 src = fetchFromGitHub { 13 11 owner = "v0ldek"; 14 12 repo = "rsonpath"; 15 13 rev = "v${version}"; 16 - hash = "sha256-ip5phYOoUm7I0SsnfXVGzgt+OFXjXKt4hiFjH3nkacA="; 14 + hash = "sha256-WrapSvWoaBVxlpCxau70Et5K9tRs84xsXBDWsuoFI+E="; 17 15 }; 18 16 19 - cargoHash = "sha256-T2aR3PCQ5BcJZ+Aw/yLJ6vbLxkrKrNnsZkXwo0G9BZE="; 20 - 21 - buildNoDefaultFeatures = !withSimd; 17 + cargoHash = "sha256-fGu6eypizOGHCiyAeH7nCLHyfVLMBPNU1xmqfVGhSzw="; 22 18 23 19 cargoBuildFlags = [ "-p=rsonpath" ]; 24 20 cargoTestFlags = cargoBuildFlags;