Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
radicle/git/raw: `Config` not used on Windows
Lorenz Leutgeb committed 2 months ago
commit dfe3b501c76f78d1d7f04c663f3995ba914b5aea
parent ed2b36cf9c930724a752458752d71825634f73a4
1 file changed +4 -2
modified crates/radicle/src/git/raw.rs
@@ -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;