radicle/git/raw: `Config` not used on Windows

Fix a clippy lint that sneaked in…
This commit is contained in:
Lorenz Leutgeb 2026-02-14 00:03:09 +01:00 committed by Fintan Halpenny
parent ed2b36cf9c
commit dfe3b501c7
1 changed files with 4 additions and 2 deletions

View File

@ -6,10 +6,12 @@
// Re-exports that are only used within this crate.
pub(crate) use git2::{
message_trailers_strs, AutotagOption, Blob, Config, FetchOptions, FetchPrune, Object, Revwalk,
Sort,
message_trailers_strs, AutotagOption, Blob, FetchOptions, FetchPrune, Object, Revwalk, Sort,
};
#[cfg(unix)]
pub(crate) use git2::Config;
// Re-exports that are only used within this crate for testing.
#[cfg(any(test, feature = "test"))]
pub(crate) use git2::RemoteCallbacks;