]> Kevux Git Server - rit/commit
repository: require Rust support for interoperability
authorbrian m. carlson <sandals@crustytoothpaste.net>
Sat, 7 Feb 2026 20:04:31 +0000 (20:04 +0000)
committerJunio C Hamano <gitster@pobox.com>
Sun, 8 Feb 2026 01:41:00 +0000 (17:41 -0800)
commit13ecc938422b204170a3276edb427e0ff38e3670
tree6163119b3a45373dc9bbd61c47b7154c1fdcf9ad
parent3e0db84c88c57e70ac8be8c196dfa92c5d656fbc
repository: require Rust support for interoperability

We'll be implementing some of our interoperability code, like the loose
object map, in Rust.  While the code currently compiles with the old
loose object map format, which is written entirely in C, we'll soon
replace that with the Rust-based implementation.

Require the use of Rust for compatibility mode and die if it is not
supported.  Because the repo argument is not used when Rust is missing,
cast it to void to silence the compiler warning, which we do not care
about.

Add a prerequisite in our tests, RUST, that checks if Rust functionality
is available and use it in the tests that handle interoperability.

This is technically a regression in functionality compared to our
existing state, but pack index v3 is not yet implemented and thus the
functionality is mostly quite broken, which is why we've recently marked
this functionality as experimental.  We don't believe anyone is getting
useful use out of the interoperability code in its current state, so no
actual users should be negatively impacted by this change.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
repository.c
t/t1006-cat-file.sh
t/t1016-compatObjectFormat.sh
t/t1500-rev-parse.sh
t/t9305-fast-import-signatures.sh
t/t9350-fast-export.sh
t/test-lib.sh