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
◌ CI pending Lorenz Leutgeb committed 2 months ago
commit 817731c152100594cb9f9652c9d1902aa1e70255
parent c06b00e330d82c8b8221cc8f8776c883208d159f
1 pending (1 total) View logs
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;