diff --git a/Cargo.lock b/Cargo.lock index a0e216803..bd7c50e55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1080,6 +1080,7 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" dependencies = [ + "cc", "pkg-config", "vcpkg", ] diff --git a/test/src/lib.rs b/test/src/lib.rs index 04da1a689..71f813ca0 100644 --- a/test/src/lib.rs +++ b/test/src/lib.rs @@ -151,7 +151,10 @@ mod tests { } } - assert!(page_split_log_found, "Expected root page split but not executed"); + assert!( + page_split_log_found, + "Expected root page split but not executed" + ); Ok(()) }