Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
protocol: Minimize scope of `radicle::git::raw`
Lorenz Leutgeb committed 10 days ago
commit 0fb337cddf8a0047ad8ef14e9ea2d6e08c734aca
parent fc640538c95d7bea64b5121e4d0f83bd9e38d664
1 file changed +2 -2
modified crates/radicle-protocol/src/worker/fetch/error.rs
@@ -2,7 +2,7 @@ use std::io;

use thiserror::Error;

-
use radicle::{cob, git::raw, identity, storage};
+
use radicle::{cob, identity, storage};
use radicle_fetch as fetch;

#[derive(Debug, Error)]
@@ -10,7 +10,7 @@ pub enum Fetch {
    #[error(transparent)]
    Run(#[from] fetch::Error),
    #[error(transparent)]
-
    Git(#[from] raw::Error),
+
    Git(#[from] radicle::git::raw::Error),
    #[error(transparent)]
    Storage(#[from] storage::Error),
    #[error(transparent)]