aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-11-17 21:01:47 +0100
committerHampusM <hampus@hampusmat.com>2022-11-17 21:01:47 +0100
commitd99cbf9fa95856cbc14a3217e1cd3f13aeb2e0b3 (patch)
treefa3596d53a850fb4d8d12e853789446acea7c3e2 /src
parent6a8fb450b5ac3e365455abe783757b7376bd1b08 (diff)
refactor: use the async-lock crate instead of Tokio
Diffstat (limited to 'src')
-rw-r--r--src/di_container/asynchronous/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/di_container/asynchronous/mod.rs b/src/di_container/asynchronous/mod.rs
index 89b2fba..65f5c9e 100644
--- a/src/di_container/asynchronous/mod.rs
+++ b/src/di_container/asynchronous/mod.rs
@@ -54,8 +54,8 @@
use std::any::type_name;
use std::sync::Arc;
+use async_lock::Mutex;
use async_trait::async_trait;
-use tokio::sync::Mutex;
use crate::dependency_history::{DependencyHistory, IDependencyHistory};
use crate::di_container::asynchronous::binding::builder::AsyncBindingBuilder;