Skip to content

Commit cedf7cc

Browse files
committed
Use futures::lock::Mutex instead
1 parent 8a6b826 commit cedf7cc

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ arrow-string = { version = "52" }
4747
async-stream = "0.3.5"
4848
async-trait = "0.1"
4949
async-std = "1.12.0"
50-
async-lock = "3.4.0"
5150
aws-config = "1.1.8"
5251
aws-sdk-glue = "1.21.0"
5352
bimap = "0.6"

crates/catalog/inmemory/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ license = { workspace = true }
2929
keywords = ["iceberg", "inmemory", "catalog"]
3030

3131
[dependencies]
32-
async-lock = { workspace = true }
3332
async-trait = { workspace = true }
33+
futures = { workspace = true }
3434
iceberg = { workspace = true }
3535
itertools = { workspace = true }
3636
serde_json = { workspace = true }

crates/catalog/inmemory/src/catalog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
//! This module contains in-memory catalog implementation.
1919
20-
use async_lock::Mutex;
20+
use futures::lock::Mutex;
2121
use iceberg::io::FileIO;
2222
use iceberg::spec::{TableMetadata, TableMetadataBuilder};
2323
use itertools::Itertools;

0 commit comments

Comments
 (0)