diff options
| author | Patrick Steinhardt <ps@pks.im> | 2025-10-02 09:29:31 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-02 09:32:32 -0700 |
| commit | 8832e728d362992a38eef89613b44d24f18e6c2a (patch) | |
| tree | 0762b93f2b58aa01ebc8a39166bd363141a40821 /src/lib.rs | |
| parent | varint: use explicit width for integers (diff) | |
| download | git-8832e728d362992a38eef89613b44d24f18e6c2a.tar.gz git-8832e728d362992a38eef89613b44d24f18e6c2a.zip | |
varint: reimplement as test balloon for Rust
Implement a trivial test balloon for our Rust build infrastructure by
reimplementing the "varint.c" subsystem in Rust. This subsystem is
chosen because it is trivial to convert and because it doesn't have any
dependencies to other components of Git.
If support for Rust is enabled, we stop compiling "varint.c" and instead
compile and use "src/varint.rs".
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs index e69de29bb2..9da70d8b57 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -0,0 +1 @@ +pub mod varint; |
