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