meson: update version to reduce warning
Meson gives the following warning:
```
WARNING: Project specifies a minimum meson_version '>=1.1.1' but uses features which were added in newer versions:
* 1.3.0: {'fs.relative_to'}
```
Adjust the project requirements to require 1.3.0.
Change-Id: I5ed96ef167326d74d92f5f8a8c72c203d36c2f64
diff --git a/meson.build b/meson.build
index afde2e1..4acc81d 100644
--- a/meson.build
+++ b/meson.build
@@ -4,7 +4,7 @@
default_options: ['warning_level=3', 'werror=true', 'cpp_std=c++23'],
license: 'Apache-2.0',
version: '0.1',
- meson_version: '>=1.1.1',
+ meson_version: '>=1.3.0',
)
add_project_arguments('-Wno-psabi', language: 'cpp')