1project( 2 'equivalent', 3 'rust', 4 version : '1.0.1', 5 license :'MIT OR Apache-2.0', 6) 7 8lib = static_library( 9 'equivalent', 10 'src/lib.rs', 11 override_options : ['rust_std=2021', 'build.rust_std=2021'], 12 rust_abi : 'rust', 13 native : true, 14) 15 16dep_equivalent = declare_dependency( 17 link_with : [lib], 18) 19