Files
matrix-rust-sdk/crates/matrix-sdk-sqlite/build.rs
Kévin Commaille 99ae06be68 chore: Fix cfg options
Cargo nightly now checks whether a cfg option exists.
We need to declare the custom
options we use
and fix those that are wrong.

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
2024-05-10 11:34:59 +02:00

8 lines
255 B
Rust

fn main() {
// Prevent unnecessary rerunning of this build script
println!("cargo:rerun-if-changed=build.rs");
// Prevent nightly CI from erroring on tarpaulin_include attribute
println!("cargo:rustc-check-cfg=cfg(tarpaulin_include)");
}