From cdad66531eded3a2fd5c51392c613114f79cbc49 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 19 May 2024 16:07:29 +0100 Subject: [PATCH] fix(server): don't use gix in server --- crates/server/Cargo.toml | 2 -- crates/server/src/actors/repo/status.rs | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) 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};