meson: update required version

In meson 0.58 the `get_variable` was enhanced to no longer require the
`pkgconfig` keyword argument, but instead it uses a positional argument
which applies to all search-types.  This repository is already using
a variant which is only supported on meson 0.58 (or later) so ensure
the 0.58 version is required.

Change-Id: I782f745d4a0676fa35f80712cf5bc08b79f7cbdf
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.build b/meson.build
index 90cdca1..1825101 100644
--- a/meson.build
+++ b/meson.build
@@ -10,7 +10,7 @@
     ],
     license: 'Apache-2.0',
     version: '1.0',
-    meson_version: '>=0.57.0',
+    meson_version: '>=0.58.0',
 )
 
 python_prog = find_program('python3', native: true)