restate: 1.4.4 -> 1.5.1

This commit is contained in:
myypo
2025-10-02 10:15:03 +03:00
parent 98dc55bd0e
commit 367700fc92
+6 -4
View File
@@ -25,16 +25,16 @@
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "restate";
version = "1.4.4";
version = "1.5.1";
src = fetchFromGitHub {
owner = "restatedev";
repo = "restate";
tag = "v${finalAttrs.version}";
hash = "sha256-OtDVYGYoUpocy3c9ZDKbE5ZqGRLewJMvABj2QQxJQ80=";
hash = "sha256-NMT1/Oy0EmAtGqHMK3FL/MZczKz//hXkpKWhQ4S3tLw=";
};
cargoHash = "sha256-OWSFnVqyI2qV0IEXKOAp2QMs2qmjzS0UINVo+nu296g=";
cargoHash = "sha256-M7p20eeaxijlGjYBAAwmK4y/58eo7NysoK+Gvs86SNo=";
env = {
PROTOC = lib.getExe protobuf;
@@ -51,22 +51,24 @@ rustPlatform.buildRustPackage (finalAttrs: {
"-C force-unwind-tables"
"--cfg uuid_unstable"
"--cfg tokio_unstable"
"--cfg tokio_taskdump"
];
"aarch64-unknown-linux-gnu" = self.build ++ [
# Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805)
"-C force-frame-pointers=yes"
"--cfg tokio_taskdump"
];
"x86_64-unknown-linux-musl" = self.build ++ [
"-C link-self-contained=yes"
"--cfg tokio_taskdump"
];
"aarch64-unknown-linux-musl" = self.build ++ [
# Enable frame pointers to support Parca (https://github.com/parca-dev/parca-agent/pull/1805)
"-C force-frame-pointers=yes"
"-C link-self-contained=yes"
"--cfg tokio_taskdump"
];
});
in