Skip to content

Commit

Permalink
chore: switch over to tokio mutex
Browse files Browse the repository at this point in the history
  • Loading branch information
jacek-prisma committed Dec 13, 2024
1 parent a5078e1 commit 2a336b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quaint/src/connector/postgres/native/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ use std::{
};

use async_trait::async_trait;
use futures::lock::Mutex;
use lru_cache::LruCache;
use postgres_types::Type;
use tokio::sync::Mutex;
use tokio_postgres::{Client, Error, Statement};

use crate::connector::metrics::strip_query_traceparent;
Expand Down

0 comments on commit 2a336b3

Please sign in to comment.