conan: Update Boost to 1.83 & OpenSSL to 3.2.0 (#5007)
This commit is contained in:
@@ -53,6 +53,7 @@
|
|||||||
- Dev: Temporarily disable High DPI scaling on Qt6 builds on Windows. (#4767)
|
- Dev: Temporarily disable High DPI scaling on Qt6 builds on Windows. (#4767)
|
||||||
- Dev: Tests now run on Ubuntu 22.04 instead of 20.04 to loosen C++ restrictions in tests. (#4774)
|
- Dev: Tests now run on Ubuntu 22.04 instead of 20.04 to loosen C++ restrictions in tests. (#4774)
|
||||||
- Dev: Do a pretty major refactor of the Settings classes. List settings (e.g. highlights) are most heavily modified, and should have an extra eye kept on them. (#4775)
|
- Dev: Do a pretty major refactor of the Settings classes. List settings (e.g. highlights) are most heavily modified, and should have an extra eye kept on them. (#4775)
|
||||||
|
- Dev: conan: Update Boost to 1.83 & OpenSSL to 3.2.0. (#5007)
|
||||||
- Dev: Remove `boost::noncopyable` use & `boost_random` dependency. (#4776)
|
- Dev: Remove `boost::noncopyable` use & `boost_random` dependency. (#4776)
|
||||||
- Dev: Fix clang-tidy `cppcoreguidelines-pro-type-member-init` warnings. (#4426)
|
- Dev: Fix clang-tidy `cppcoreguidelines-pro-type-member-init` warnings. (#4426)
|
||||||
- Dev: Immediate layout for invisible `ChannelView`s is skipped. (#4811)
|
- Dev: Immediate layout for invisible `ChannelView`s is skipped. (#4811)
|
||||||
|
|||||||
+2
-2
@@ -5,7 +5,7 @@ from os import path
|
|||||||
|
|
||||||
class Chatterino(ConanFile):
|
class Chatterino(ConanFile):
|
||||||
name = "Chatterino"
|
name = "Chatterino"
|
||||||
requires = "boost/1.81.0"
|
requires = "boost/1.83.0"
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
default_options = {
|
default_options = {
|
||||||
"with_benchmark": False,
|
"with_benchmark": False,
|
||||||
@@ -24,7 +24,7 @@ class Chatterino(ConanFile):
|
|||||||
self.requires("benchmark/1.7.1")
|
self.requires("benchmark/1.7.1")
|
||||||
|
|
||||||
if self.options.get_safe("with_openssl3", False):
|
if self.options.get_safe("with_openssl3", False):
|
||||||
self.requires("openssl/3.1.0")
|
self.requires("openssl/3.2.0")
|
||||||
else:
|
else:
|
||||||
self.requires("openssl/1.1.1t")
|
self.requires("openssl/1.1.1t")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user