Merge pull request #247775 from figsoda/rsonpath

rsonpath: 0.6.0 -> 0.6.1
This commit is contained in:
Nick Cao 2023-08-07 18:42:15 -06:00 committed by GitHub
commit 09c67c08d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,23 +7,18 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "rsonpath"; pname = "rsonpath";
version = "0.6.0"; version = "0.6.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "v0ldek"; owner = "v0ldek";
repo = "rsonpath"; repo = "rsonpath";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-RRMT//OnwzoZEsOPZyHfQQbkphopZBI1u8xQe8LsPBo="; hash = "sha256-3ncaO7B3e4F2LFj1IjHvOyoWXBYQM69vPfPnsBr+tKI=";
}; };
cargoHash = "sha256-o9L6GUYDDm/WM8iD0k/OGf26w9O8DLH0jMr//ruKnrs="; cargoHash = "sha256-EjifSABhowk3PSQTuAm8+xRYbc0OwdqHMb9o/z1yuP0=";
buildNoDefaultFeatures = true; buildNoDefaultFeatures = !withSimd;
buildFeatures = [
"default-optimizations"
] ++ lib.optionals withSimd [
"simd"
];
cargoBuildFlags = [ "-p=rsonpath" ]; cargoBuildFlags = [ "-p=rsonpath" ];
cargoTestFlags = cargoBuildFlags; cargoTestFlags = cargoBuildFlags;