Fix building of the range-v3 dependency. The conan remote URL for this dependency changed and we have to use the new URL. This broke the homebrew build as well.

This commit is contained in:
Sebastian Messmer 2021-12-09 11:22:35 +01:00
parent bdfc528c70
commit 910c2e1f75
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Version 0.11.1 (unreleased)
---------------
Bugfix:
* Fix building of the range-v3 dependency. The conan remote URL for this dependency changed and we have to use the new URL. See https://github.com/cryfs/cryfs/issues/398
Version 0.11.0
---------------
Backwards Compatibility:

View File

@ -3,7 +3,7 @@ from conans import ConanFile, CMake
class CryFSConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = [
"range-v3/0.11.0@ericniebler/stable",
"range-v3/0.11.0",
"spdlog/1.8.5",
"boost/1.75.0",
]