blob: 1dd439f4653d59af423a27b5caa84d837a9e9867 [file] [log] [blame] [edit]
project(
'equivalent',
'rust',
version : '1.0.1',
license :'MIT OR Apache-2.0',
)
lib = static_library(
'equivalent',
'src/lib.rs',
override_options : ['rust_std=2021', 'build.rust_std=2021'],
rust_abi : 'rust',
native : true,
)
dep_equivalent = declare_dependency(
link_with : [lib],
)