blob: 683f1307cafad9f87a0e07ec00e834e14cf5da2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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,
)
|