Skip to content

Commit

Permalink
(#22900) asio-grpc: use maintained version of libunifex
Browse files Browse the repository at this point in the history
* asio-grpc/all: bump deps

Generated and committed by [Conan Center Bump Deps](https://github.com/ericLemanissier/conan-center-index-bump-deps)
Find more updatable recipes in the [GitHub Pages](https://ericLemanissier.github.io/conan-center-index-bump-deps/)

* asio-grpc/all: bump deps

Generated and committed by [Conan Center Bump Deps](https://github.com/ericLemanissier/conan-center-index-bump-deps)
Find more updatable recipes in the [GitHub Pages](https://ericLemanissier.github.io/conan-center-index-bump-deps/)

* asio-grpc/all: bump deps

Generated and committed by [Conan Center Bump Deps](https://github.com/ericLemanissier/conan-center-index-bump-deps)
Find more updatable recipes in the [GitHub Pages](https://ericLemanissier.github.io/conan-center-index-bump-deps/)

* boost and asio hearders are transitive

https://github.com/Tradias/asio-grpc/blob/v2.9.3/src/agrpc/detail/asio_forward.hpp#L73

* grpc lib is transitive

* unbump boost
  • Loading branch information
ericLemanissier committed Feb 27, 2024
1 parent 74474c0 commit a4d1345
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/asio-grpc/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def configure(self):
raise ConanInvalidConfiguration(f"{self.name} 'recycling_allocator' cannot be used in combination with the 'unifex' backend.")

def requirements(self):
self.requires("grpc/1.54.3")
self.requires("grpc/1.54.3", transitive_libs=True)
if self._local_allocator_option == "boost_container" or self.options.backend == "boost":
self.requires("boost/1.83.0")
self.requires("boost/1.83.0", transitive_headers=True)
if self.options.backend == "asio":
self.requires("asio/1.28.2")
self.requires("asio/1.29.0", transitive_headers=True)
if self.options.backend == "unifex":
self.requires("libunifex/cci.20220430")
self.requires("libunifex/0.4.0")

def package_id(self):
self.info.clear()
Expand Down

0 comments on commit a4d1345

Please sign in to comment.