lol

restate: 1.4.4 -> 1.5.1 (#447772)

authored by

Gaétan Lepage and committed by
GitHub
8c22c326 f5c71d7a

+6 -4
+6 -4
pkgs/by-name/re/restate/package.nix
··· 25 25 }: 26 26 rustPlatform.buildRustPackage (finalAttrs: { 27 27 pname = "restate"; 28 - version = "1.4.4"; 28 + version = "1.5.1"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "restatedev"; 32 32 repo = "restate"; 33 33 tag = "v${finalAttrs.version}"; 34 - hash = "sha256-OtDVYGYoUpocy3c9ZDKbE5ZqGRLewJMvABj2QQxJQ80="; 34 + hash = "sha256-NMT1/Oy0EmAtGqHMK3FL/MZczKz//hXkpKWhQ4S3tLw="; 35 35 }; 36 36 37 - cargoHash = "sha256-OWSFnVqyI2qV0IEXKOAp2QMs2qmjzS0UINVo+nu296g="; 37 + cargoHash = "sha256-M7p20eeaxijlGjYBAAwmK4y/58eo7NysoK+Gvs86SNo="; 38 38 39 39 env = { 40 40 PROTOC = lib.getExe protobuf; ··· 51 51 "-C force-unwind-tables" 52 52 "--cfg uuid_unstable" 53 53 "--cfg tokio_unstable" 54 - "--cfg tokio_taskdump" 55 54 ]; 56 55 57 56 "aarch64-unknown-linux-gnu" = self.build ++ [ 58 57 # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) 59 58 "-C force-frame-pointers=yes" 59 + "--cfg tokio_taskdump" 60 60 ]; 61 61 62 62 "x86_64-unknown-linux-musl" = self.build ++ [ 63 63 "-C link-self-contained=yes" 64 + "--cfg tokio_taskdump" 64 65 ]; 65 66 66 67 "aarch64-unknown-linux-musl" = self.build ++ [ 67 68 # Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805) 68 69 "-C force-frame-pointers=yes" 69 70 "-C link-self-contained=yes" 71 + "--cfg tokio_taskdump" 70 72 ]; 71 73 }); 72 74 in