Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
protocol: Minimize scope of `radicle::git::raw`
✓ CI success Lorenz Leutgeb committed 14 days ago
commit 878f0a1fc066fe6f93373b3aff95cf3aea5e9127
parent 735e45b7e12d653ad1a9d237024e006f72d60b2f
1 passed (1 total) View logs
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)]