From d77012d1acd376bd3feefea8e4d47b9058301d90 Mon Sep 17 00:00:00 2001 From: Magnus Bakken <10287813+magbak@users.noreply.github.com> Date: Fri, 1 Nov 2024 12:57:57 +0100 Subject: [PATCH] Update with hashbrown workaround --- Cargo.lock | 1 + Cargo.toml | 3 +++ lib/chrontext/Cargo.toml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 23621e2..1ffae8d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -585,6 +585,7 @@ dependencies = [ "async-recursion", "async-trait", "filesize", + "hashbrown 0.14.5", "log", "oxrdf", "polars", diff --git a/Cargo.toml b/Cargo.toml index d2be82e..deb1eee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,6 +51,9 @@ rayon = "1.10.0" opcua = {version="0.12.0", features = ["vendored-openssl"]} url = "2.5.2" uuid = {version = "1.10.0", features = ["fast-rng", "v4"]} +# Workaround for problem compiling polars +# https://github.com/pola-rs/polars/issues/19063 +hashbrown = { version = "0.14.5", features = ["raw"] } [patch.crates-io] #polars = { git = "https://github.com/pola-rs/polars.git", rev = "0c2b5d82fd2726df7d7b318e5c21581a27fffdba"} diff --git a/lib/chrontext/Cargo.toml b/lib/chrontext/Cargo.toml index 3e80b62..5fd9bcf 100644 --- a/lib/chrontext/Cargo.toml +++ b/lib/chrontext/Cargo.toml @@ -34,6 +34,8 @@ async-recursion.workspace = true async-trait.workspace = true filesize.workspace = true uuid.workspace = true +# Workaround for problem compiling polars +hashbrown.workspace = true [features] opcua = ["virtualization/opcua"]