1project( 2 'once_cell', 3 'rust', 4 version : '1.8.0', 5 license :'MIT OR Apache-2.0', 6) 7 8rust_args = [ 9 '--cfg', 'feature="std"' 10] 11 12lib = static_library( 13 'once_cell', 14 'src/lib.rs', 15 rust_args : rust_args, 16 override_options : ['rust_std=2018', 'build.rust_std=2018'], 17 rust_abi : 'rust', 18 native : true, 19) 20 21dep_once_cell = declare_dependency( 22 link_with : [lib], 23) 24