From 012263019fe953ae0d41c9370b9f3185929715c1 Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Sun, 5 Jul 2026 10:01:05 -0700 Subject: [PATCH 1/2] Update ladybug to 0.18.2 --- server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index 94fc68b..6c55636 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -21,7 +21,7 @@ env_logger = "0.10" bolt4rs = { path = "../lib", features = ["unstable-bolt-protocol-impl-v2", "unstable-serde-packstream-format"] } anyhow = "1.0" clap = { version = ">=4.4, <=4.5.56", features = ["derive"] } -lbug = { version = ">=0.17.1", features = ["arrow"] } +lbug = { version = ">=0.18.2", features = ["arrow"] } arrow-array = { version = "55.0.0", default-features = false } arrow = { version = "55.0.0", default-features = false } arrow-schema = { version = "55.0.0", default-features = false } From 9b4a0998c676cad5b20e7006632320eb2c18d0ec Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Mon, 20 Jul 2026 12:11:27 -0700 Subject: [PATCH 2/2] ubuntu: add libssl-dev for 0.18.x or newer --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 39b85cd..f081a44 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ lld \ + libssl-dev \ && rm -rf /var/lib/apt/lists/* # Set the working directory inside the container