From 84e515db04afcbdc37dbfc99122208f3a1939e15 Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Fri, 22 Nov 2024 13:37:44 -0500 Subject: [PATCH] align abseil version with spectatord The spectatord package declares a dependency on `protobuf/5.27.0`, which then specifies a slightly older version of `abseil`. Align these versions. --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 66d7cd6..a975f22 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ class SpectatorCppConan(ConanFile): settings = "os", "compiler", "build_type", "arch" requires = ( - "abseil/20240722.0", + "abseil/20240116.2", "asio/1.32.0", "backward-cpp/1.6", "fmt/11.0.2",