git.delta.rocks / jrsonnet / refs/commits / f314b37b4c17

difftreelog

fix benchmarks against release

Yaroslav Bolyukin2024-06-18parent: #bf30e81.patch.diff
in: master

2 files changed

modifiedcrates/jrsonnet-stdlib/src/objects.rsdiffbeforeafterboth
--- a/crates/jrsonnet-stdlib/src/objects.rs
+++ b/crates/jrsonnet-stdlib/src/objects.rs
@@ -57,7 +57,6 @@
 	o: ObjValue,
 	include_hidden: bool,
 
-	#[default(false)]
 	#[cfg(feature = "exp-preserve-order")]
 	preserve_order: bool,
 ) -> ArrValue {
@@ -102,7 +101,6 @@
 	o: ObjValue,
 	include_hidden: bool,
 
-	#[default(false)]
 	#[cfg(feature = "exp-preserve-order")]
 	preserve_order: bool,
 ) -> ArrValue {
modifiednix/jrsonnet-release.nixdiffbeforeafterboth
before · nix/jrsonnet-release.nix
1{2  fetchFromGitHub,3  rustPlatform,4  makeWrapper,5}:6rustPlatform.buildRustPackage rec {7  pname = "jrsonnet";8  version = "pre9";910  src = fetchFromGitHub {11    owner = "CertainLach";12    repo = pname;13    rev = "5dc3b98bcc3b9848031f17165bcc2e86e8a65ba3";14    hash = "sha256-KM1yqsFzt7Vj4xiEzJJiuFaG49/utF80r9A2dSwCAjo=";15  };16  cargoHash = "sha256-y2YiktT1h263vpFaC+kRL8yaAWQThhEkS+NSQ6B6Ylk=";1718  cargoTestFlags = ["--package=jrsonnet --features=mimalloc,legacy-this-file"];19  cargoBuildFlags = ["--package=jrsonnet --features=mimalloc,legacy-this-file"];2021  buildInputs = [makeWrapper];2223  postInstall = ''24    wrapProgram $out/bin/jrsonnet --add-flags "--max-stack=200000 --os-stack=200000"25  '';26}