diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 5368bb3..56187d4 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -21,8 +21,6 @@ tracing-subscriber = { workspace = true } base64 = { workspace = true } # git -# gix = { workspace = true } -gix = { workspace = true } async-trait = { workspace = true } # fs/network diff --git a/crates/server/src/actors/repo/status.rs b/crates/server/src/actors/repo/status.rs index 92af757..9b2eb33 100644 --- a/crates/server/src/actors/repo/status.rs +++ b/crates/server/src/actors/repo/status.rs @@ -1,7 +1,6 @@ use actix::prelude::*; use git_next_git as git; -use gix::trace::warn; -use tracing::info; +use tracing::{info, warn}; use crate::{actors::repo::ValidateRepo, gitforge, types::MessageToken};