about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2023-09-23 22:35:22 +0400
committerGitHub <noreply@github.com>2023-09-23 22:35:22 +0400
commitffa0af29cea16fdb1ea04228091db32254399d6e (patch)
treeabf1f7087de1b5645f65de1eb9a49506e99757e2
parent0b4a9ae04ce5490448bbf05683f5afde0cc24de6 (diff)
parent056ada48007f9eaffd8ba8458482477bd72237af (diff)
downloadnixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.tar
nixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.tar.gz
nixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.tar.bz2
nixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.tar.lz
nixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.tar.xz
nixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.tar.zst
nixlib-ffa0af29cea16fdb1ea04228091db32254399d6e.zip
Merge pull request #256902 from figsoda/rson
rsonpath: 0.8.1 -> 0.8.2
-rw-r--r--pkgs/development/tools/misc/rsonpath/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/rsonpath/default.nix b/pkgs/development/tools/misc/rsonpath/default.nix
index 168ae582dd0e..30f04fe95987 100644
--- a/pkgs/development/tools/misc/rsonpath/default.nix
+++ b/pkgs/development/tools/misc/rsonpath/default.nix
@@ -5,22 +5,22 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rsonpath";
-  version = "0.8.1";
+  version = "0.8.2";
 
   src = fetchFromGitHub {
     owner = "v0ldek";
     repo = "rsonpath";
     rev = "v${version}";
-    hash = "sha256-xLDKTvlKPhJhGPmLmKaoTnzGABEgOU/qNDODJDlqmHs=";
+    hash = "sha256-3/xhYfo23aps3UjjUEcuLYg8JALfIpbCf6LO0F2IS20=";
   };
 
-  cargoHash = "sha256-lZ4A35WwQws39OJXePdoxItHYAE8EvqTLX7i8r7fW4o=";
+  cargoHash = "sha256-2HVPqSkQU90ZAFG0tPbysCVIkd433fpTtTO1y4+ZUTU=";
 
   cargoBuildFlags = [ "-p=rsonpath" ];
   cargoTestFlags = cargoBuildFlags;
 
   meta = with lib; {
-    description = "Blazing fast Rust JSONPath query engine";
+    description = "Experimental JSONPath engine for querying massive streamed datasets";
     homepage = "https://github.com/v0ldek/rsonpath";
     changelog = "https://github.com/v0ldek/rsonpath/blob/${src.rev}/CHANGELOG.md";
     license = licenses.mit;