1project(
2 'ucd_trie',
3 'rust',
4 version : '0.1.6',
5 license : '(MIT or Apache-2.0) AND Unicode-DFS-2016)',
6)
7
8lib = static_library(
9 'ucd_trie',
10 'src/lib.rs',
11 override_options : ['rust_std=2018', 'build.rust_std=2018'],
12 rust_abi : 'rust',
13 native : true,
14)
15