Upgrade required version of boost to 1.80

This is to match yocto. subproject is already pointed at 1.80, but for
a while CI still had 1.79. But OpenBMC CI has long since been moved [1]
to 1.80, so upgrade the dependency requirements in turn.

[1] https://github.com/openbmc/openbmc-build-scripts/blob/05fb2a0ab2ff772679272047b0bf0608adaf41fa/scripts/build-unit-test-docker#L80

Tested: Code compiles. No functional changes.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Ife6d163660b734893f0793da0e642cd61730acec
diff --git a/meson.build b/meson.build
index 12e51a3..280b9be 100644
--- a/meson.build
+++ b/meson.build
@@ -285,7 +285,7 @@
 endif
 bmcweb_dependencies += nlohmann_json
 
-boost = dependency('boost',version : '>=1.79.0', required : false, include_type: 'system')
+boost = dependency('boost',version : '>=1.80.0', required : false, include_type: 'system')
 if not boost.found()
   boost = subproject('boost', required: true).get_variable('boost_dep')
 endif