insulator2: 2.12.2 -> 2.13.2

This commit is contained in:
Felix Buehler 2024-09-29 23:13:08 +02:00
parent 39395463cd
commit 817fd89872
3 changed files with 1561 additions and 1226 deletions

File diff suppressed because it is too large Load Diff

View File

@ -25,7 +25,7 @@
stdenv.mkDerivation rec {
pname = "insulator2";
version = "2.12.2";
version = "2.13.2";
src = fetchFromGitHub {
owner = "andrewinci";
@ -36,11 +36,7 @@ stdenv.mkDerivation rec {
patches = [
# see: https://github.com/andrewinci/insulator2/pull/733
(fetchpatch {
name = "fix-rust-1.80.0";
url = "https://github.com/andrewinci/insulator2/commit/7dbff0777c4364eec68cf90488d99f06b11dfa98.patch";
hash = "sha256-P8rBufYpREP5tOO9vSymvms4f2JbsUEjK7/yn9P7gYk=";
})
./fix-rust-1.80.0.patch
];
# Yarn *really* wants us to use corepack if this is set
@ -50,15 +46,13 @@ stdenv.mkDerivation rec {
yarnOfflineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock";
hash = "sha256-ih5NSOvYje981SkVfPHm/u2sS1B36kgxpfe9LmQaxdo=";
hash = "sha256-5wOgVrcHJVF07QpnN52d4VWEM3FKw3NdLrZ1goAP2oI=";
};
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"apache-avro-0.15.0" = "sha256-bjA/x/IDzAYugsc1vn9fBVKaCiLOJYdA1Q9H2pffBh0=";
"openssl-src-111.25.0+1.1.1t" = "sha256-1BEtb38ilJJAw35KW+NOIe1rhxxOPsnz0gA2zJnof8c=";
"rdkafka-0.29.0" = "sha256-a739Fc+qjmIrK754GT22Gb/Ftd82lLSUzv53Ej7Khu4=";
"apache-avro-0.16.0" = "sha256-v4TeJEhLEqQUgj+EHgFRVUGoLC+SpOUhAXngMP7R7nM=";
"rust-keystore-0.1.1" = "sha256-Cj64uJFZNxnrplhRuqf9/HK/RAaawzfYHo/J9snZ+TU=";
};
};

View File

@ -0,0 +1,51 @@
From 7dbff0777c4364eec68cf90488d99f06b11dfa98 Mon Sep 17 00:00:00 2001
From: Felix Buehler <account@buehler.rocks>
Date: Tue, 8 Oct 2024 23:49:40 +0200
Subject: [PATCH] build: Bump time from 0.3.34 to 0.3.36 in /backend
---
backend/Cargo.lock | 8 ++++----
backend/Cargo.toml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/backend/Cargo.lock b/backend/Cargo.lock
index dc3ac0d4..571bd845 100644
--- a/backend/Cargo.lock
+++ b/backend/Cargo.lock
@@ -4771,9 +4771,9 @@ dependencies = [
[[package]]
name = "time"
-version = "0.3.34"
+version = "0.3.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
+checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
dependencies = [
"deranged",
"itoa 1.0.10",
@@ -4792,9 +4792,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
-version = "0.2.17"
+version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
+checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
dependencies = [
"num-conv",
"time-core",
diff --git a/backend/Cargo.toml b/backend/Cargo.toml
index 2a689961..3d198dff 100644
--- a/backend/Cargo.toml
+++ b/backend/Cargo.toml
@@ -49,7 +49,7 @@ r2d2 = "0.8.10"
r2d2_sqlite = "0.21.0"
toml = "0.7"
rand = "0.8.5"
-time = "0.3.34"
+time = "0.3.36"
sys-locale = "0.3.0"
uuid = "1.4.1"
rlimit = "0.10.1"