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