Updates Conan dependencies (#5256)

This PR updates several Conan dependencies:
* boost
* date
* libarchive
* libmysqlclient
* libpq
* lz4
* onetbb
* openssl
* sqlite3
* zlib
* zstd
This commit is contained in:
Bart
2025-02-06 13:11:49 -08:00
committed by GitHub
parent fb3713bc25
commit 02387fd227
3 changed files with 14 additions and 14 deletions

View File

@@ -62,15 +62,15 @@ class SociConan(ConanFile):
def requirements(self):
if self.options.with_sqlite3:
self.requires("sqlite3/3.41.1")
self.requires("sqlite3/3.47.0")
if self.options.with_odbc and self.settings.os != "Windows":
self.requires("odbc/2.3.11")
if self.options.with_mysql:
self.requires("libmysqlclient/8.0.31")
self.requires("libmysqlclient/8.1.0")
if self.options.with_postgresql:
self.requires("libpq/14.7")
self.requires("libpq/15.5")
if self.options.with_boost:
self.requires("boost/1.81.0")
self.requires("boost/1.83.0")
@property
def _minimum_compilers_version(self):