fix(server): don't use gix in server
This commit is contained in:
parent
c3c4c41c73
commit
4977619c70
2 changed files with 1 additions and 4 deletions
|
@ -21,8 +21,6 @@ tracing-subscriber = { workspace = true }
|
||||||
base64 = { workspace = true }
|
base64 = { workspace = true }
|
||||||
|
|
||||||
# git
|
# git
|
||||||
# gix = { workspace = true }
|
|
||||||
gix = { workspace = true }
|
|
||||||
async-trait = { workspace = true }
|
async-trait = { workspace = true }
|
||||||
|
|
||||||
# fs/network
|
# fs/network
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
use actix::prelude::*;
|
use actix::prelude::*;
|
||||||
use git_next_git as git;
|
use git_next_git as git;
|
||||||
use gix::trace::warn;
|
use tracing::{info, warn};
|
||||||
use tracing::info;
|
|
||||||
|
|
||||||
use crate::{actors::repo::ValidateRepo, gitforge, types::MessageToken};
|
use crate::{actors::repo::ValidateRepo, gitforge, types::MessageToken};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue