gst-ptp-helper: Fix meson warning about rust_crate_type

WARNING: Project targets '>= 1.4' but uses feature deprecated since
'1.3.0': rust_crate_type arg in static_library. Use rust_abi or
rust.proc_macro() instead.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8753>
This commit is contained in:
Nirbheek Chauhan 2025-04-01 18:22:18 +05:30 committed by GStreamer Marge Bot
parent 39a39f0077
commit 2c39756b24

View File

@ -98,7 +98,7 @@ conf_lib_rs = configure_file(input : 'conf_lib.rs.in',
conf = static_library('gst_ptp_helper_conf', conf_lib_rs,
override_options : ['rust_std=2018'],
rust_crate_type : 'rlib')
rust_abi : 'rust')
exe = executable('gst-ptp-helper', 'main.rs',
override_options : ['rust_std=2018'],