meson: Add pest rust dependencies

Including its dependency ucd-trie.

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Reviewed-by: @LingMan
Reviewed-by: Eric Engestrom <eric@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28869>
This commit is contained in:
Christian Gmeiner
2024-01-18 16:13:39 +01:00
committed by Marge Bot
parent 87ad3ca0ac
commit e28ff81869
13 changed files with 169 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
project(
'ucd_trie',
'rust',
version : '0.1.6',
license : '(MIT or Apache-2.0) AND Unicode-DFS-2016)',
)
lib = static_library(
'ucd_trie',
'src/lib.rs',
override_options : ['rust_std=2018', 'build.rust_std=2018'],
rust_abi : 'rust',
native : true,
)