Skip to content

Commit

Permalink
chore(*): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wvwwvwwv committed Nov 14, 2023
1 parent 9cb3354 commit d0967c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ serde = { version = "1.0", optional = true }
criterion = "0.5"
futures = "0.3"
loom = "0.7"
proptest = "1.3"
proptest = "1.4"
rand = "0.8"
serde_test = "1.0"
static_assertions = "1.1"
tokio = { version = "1.33", features = ["full"] }
tokio = { version = "1.34", features = ["full"] }

[[bench]]
name = "bag"
Expand Down
1 change: 0 additions & 1 deletion src/hash_table/bucket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use std::sync::atomic::{fence, AtomicU32};

/// [`Bucket`] is a fixed-size hash table with linear probing.
///
///
/// `TYPE` is either one of [`SEQUENTIAL`], [`OPTIMISTIC`], or [`CACHE`].
pub struct Bucket<K: Eq, V, const TYPE: char> {
/// The state of the [`Bucket`].
Expand Down

0 comments on commit d0967c0

Please sign in to comment.