From cc5fae65bf72c356cdc0979de101a94b6083bfbe Mon Sep 17 00:00:00 2001 From: Jan-Niklas Burfeind Date: Tue, 30 Jul 2024 10:44:44 +0200 Subject: [PATCH] fix: Hotfix to bump openssl past undefined behaviour This is meant to be reverted after opcua has been released and bumped in version '0.13.0'. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9471ac2..94846a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,8 @@ categories = ["command-line-utilities"] [dependencies] opcua = { version = "0.12.0", features = ["client", "console-logging"] } +# Explicitly pinning openssl >= 0.10.66 is required, as long as opcua is not 0.13.0, yet. +openssl = { version = "0.10.66" } std_msgs = { version = "4.2.4" } sensor_msgs = { version = "4.2.4" } builtin_interfaces = { version = "1.2.1" }