From 235e609eff123d33e46a5369c6da2795b508be4d Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 18 Oct 2023 18:07:35 +0530 Subject: [PATCH] meson: Bump requirement to 1.1 WARNING: Project specifies a minimum meson_version '>= 0.60' but uses features which were added in newer versions: * 1.1.0: {'feature_option.enable_if()'} Caused by https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1363 Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b2509fa4..ac8aa3a3 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('gst-plugins-rs', 'rust', 'c', version: '0.12.0-alpha.1', - meson_version : '>= 0.60') + meson_version : '>= 1.1') # dependencies.py needs a toml parsing module python = import('python').find_installation(modules: ['tomllib'], required: false)