These tell meson which version the `.wrap` file downloads and should therefore always stay in sync. No dependency is actually being updated here. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34368>
15 lines
280 B
Meson
15 lines
280 B
Meson
project(
|
|
'unicode-ident',
|
|
'rust',
|
|
version : '1.0.12',
|
|
license : '(MIT or Apache-2.0) AND Unicode-DFS-2016)',
|
|
)
|
|
|
|
lib = static_library(
|
|
'unicode_ident',
|
|
'src/lib.rs',
|
|
override_options : ['rust_std=2018', 'build.rust_std=2018'],
|
|
rust_abi : 'rust',
|
|
native : true,
|
|
)
|