File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ arrow-string = { version = "52" }
47
47
async-stream = " 0.3.5"
48
48
async-trait = " 0.1"
49
49
async-std = " 1.12.0"
50
- async-lock = " 3.4.0"
51
50
aws-config = " 1.1.8"
52
51
aws-sdk-glue = " 1.21.0"
53
52
bimap = " 0.6"
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ license = { workspace = true }
29
29
keywords = [" iceberg" , " inmemory" , " catalog" ]
30
30
31
31
[dependencies ]
32
- async-lock = { workspace = true }
33
32
async-trait = { workspace = true }
33
+ futures = { workspace = true }
34
34
iceberg = { workspace = true }
35
35
itertools = { workspace = true }
36
36
serde_json = { workspace = true }
Original file line number Diff line number Diff line change 17
17
18
18
//! This module contains in-memory catalog implementation.
19
19
20
- use async_lock :: Mutex ;
20
+ use futures :: lock :: Mutex ;
21
21
use iceberg:: io:: FileIO ;
22
22
use iceberg:: spec:: { TableMetadata , TableMetadataBuilder } ;
23
23
use itertools:: Itertools ;
You can’t perform that action at this time.
0 commit comments