Skip to content

Commit b412f47

Browse files
rtylerLiam Brannigan
authored andcommitted
chore: remove the unnecessary hashbrown dependency
According to crates.io: > Since Rust 1.36, this is now the HashMap implementation for the Rust > standard library. However you may still want to use this crate instead > since it works in environments without std, such as embedded systems and > kernels. So yeah, guesos we don't need this anymore 😆 Signed-off-by: R. Tyler Croy <[email protected]> Signed-off-by: Liam Brannigan <[email protected]>
1 parent a91fb52 commit b412f47

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

crates/core/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ strum = { workspace = true}
5454
# "stdlib"
5555
bytes = { workspace = true }
5656
chrono = { workspace = true, default-features = false, features = ["clock"] }
57-
hashbrown = "0.15.2"
5857
regex = { workspace = true }
5958
thiserror = { workspace = true }
6059
uuid = { workspace = true, features = ["serde", "v4"] }

crates/core/src/kernel/snapshot/replay.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use std::collections::HashMap;
2+
use std::collections::HashSet;
23
use std::pin::Pin;
34
use std::sync::Arc;
45
use std::task::Context;
@@ -16,7 +17,6 @@ use delta_kernel::expressions::Scalar;
1617
use delta_kernel::schema::DataType;
1718
use delta_kernel::schema::PrimitiveType;
1819
use futures::Stream;
19-
use hashbrown::HashSet;
2020
use itertools::Itertools;
2121
use percent_encoding::percent_decode_str;
2222
use pin_project_lite::pin_project;

0 commit comments

Comments
 (0)