disable qutex logs

This commit is contained in:
Aiden McClelland
2021-05-25 15:53:43 -06:00
committed by Aiden McClelland
parent 19159746e8
commit 66411701fb
4 changed files with 4 additions and 4 deletions

View File

@@ -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"

View File

@@ -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)]

View File

@@ -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

Submodule qutex updated: 5e9c9124d4...9b4e2fe1dc