diff options
author | HampusM <hampus@hampusmat.com> | 2022-11-17 21:01:47 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-11-17 21:01:47 +0100 |
commit | d99cbf9fa95856cbc14a3217e1cd3f13aeb2e0b3 (patch) | |
tree | fa3596d53a850fb4d8d12e853789446acea7c3e2 /src/di_container/asynchronous | |
parent | 6a8fb450b5ac3e365455abe783757b7376bd1b08 (diff) |
refactor: use the async-lock crate instead of Tokio
Diffstat (limited to 'src/di_container/asynchronous')
-rw-r--r-- | src/di_container/asynchronous/mod.rs | 2 |
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; |