Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into ximinez/consensus
Browse files Browse the repository at this point in the history
* upstream/develop:
  Updates Conan dependencies (5256)
  • Loading branch information
ximinez committed Feb 7, 2025
2 parents bde31ae + 02387fd commit 7c5822b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ class Xrpl(ConanFile):
}

requires = [
'date/3.0.1',
'date/3.0.3',
'grpc/1.50.1',
'libarchive/3.6.2',
'libarchive/3.7.6',
'nudb/2.0.8',
'openssl/1.1.1u',
'openssl/1.1.1v',
'soci/4.0.3',
'xxhash/0.8.2',
'zlib/1.2.13',
'zlib/1.3.1',
]

tool_requires = [
Expand Down Expand Up @@ -99,10 +99,10 @@ def configure(self):
self.options['boost'].visibility = 'global'

def requirements(self):
self.requires('boost/1.82.0', force=True)
self.requires('lz4/1.9.3', force=True)
self.requires('boost/1.83.0', force=True)
self.requires('lz4/1.10.0', force=True)
self.requires('protobuf/3.21.9', force=True)
self.requires('sqlite3/3.42.0', force=True)
self.requires('sqlite3/3.47.0', force=True)
if self.options.jemalloc:
self.requires('jemalloc/5.3.0')
if self.options.rocksdb:
Expand Down
6 changes: 3 additions & 3 deletions external/rocksdb/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ def requirements(self):
if self.options.with_snappy:
self.requires("snappy/1.1.10")
if self.options.with_lz4:
self.requires("lz4/1.9.4")
self.requires("lz4/1.10.0")
if self.options.with_zlib:
self.requires("zlib/[>=1.2.11 <2]")
if self.options.with_zstd:
self.requires("zstd/1.5.5")
self.requires("zstd/1.5.6")
if self.options.get_safe("with_tbb"):
self.requires("onetbb/2021.10.0")
self.requires("onetbb/2021.12.0")
if self.options.with_jemalloc:
self.requires("jemalloc/5.3.0")

Expand Down
8 changes: 4 additions & 4 deletions external/soci/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ def configure(self):

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):
Expand Down

0 comments on commit 7c5822b

Please sign in to comment.