mirror of
https://github.com/Start9Labs/patch-db.git
synced 2026-03-26 02:11:54 +00:00
disable qutex logs
This commit is contained in:
committed by
Aiden McClelland
parent
19159746e8
commit
66411701fb
@@ -22,7 +22,7 @@ json-ptr = { path = "../json-ptr" }
|
|||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
nix = "0.20.0"
|
nix = "0.20.0"
|
||||||
patch-db-macro = { path = "../patch-db-macro" }
|
patch-db-macro = { path = "../patch-db-macro" }
|
||||||
qutex-2 = { path = "../qutex" }
|
qutex = { path = "../qutex", package = "qutex-2" }
|
||||||
serde = { version = "1.0.118", features = ["rc"] }
|
serde = { version = "1.0.118", features = ["rc"] }
|
||||||
serde_cbor = { path = "../cbor" }
|
serde_cbor = { path = "../cbor" }
|
||||||
serde_json = "1.0.61"
|
serde_json = "1.0.61"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ use std::sync::Arc;
|
|||||||
|
|
||||||
use futures::{future::BoxFuture, FutureExt};
|
use futures::{future::BoxFuture, FutureExt};
|
||||||
use json_ptr::{JsonPointer, SegList};
|
use json_ptr::{JsonPointer, SegList};
|
||||||
use qutex_2::{QrwLock, ReadGuard, WriteGuard};
|
use qutex::{QrwLock, ReadGuard, WriteGuard};
|
||||||
use tokio::sync::Mutex;
|
use tokio::sync::Mutex;
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ use fd_lock_rs::FdLock;
|
|||||||
use indexmap::IndexSet;
|
use indexmap::IndexSet;
|
||||||
use json_ptr::{JsonPointer, SegList};
|
use json_ptr::{JsonPointer, SegList};
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
use qutex_2::{Guard, Qutex};
|
use qutex::{Guard, Qutex};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use tokio::fs::File;
|
use tokio::fs::File;
|
||||||
|
|||||||
2
qutex
2
qutex
Submodule qutex updated: 5e9c9124d4...9b4e2fe1dc
Reference in New Issue
Block a user