Skip to content

Commit 053f25c

Browse files
committed
Restore MRSV to 1.63
1 parent ab82495 commit 053f25c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["hash", "no_std", "hashmap", "swisstable"]
1010
categories = ["data-structures", "no-std"]
1111
exclude = [".github", "/ci/*"]
1212
edition = "2021"
13-
rust-version = "1.65.0"
13+
rust-version = "1.63.0"
1414

1515
[dependencies]
1616
# For the default hasher

src/raw/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ impl RawTableInner {
14331433
Self {
14341434
// Be careful to cast the entire slice to a raw pointer.
14351435
ctrl: unsafe {
1436-
NonNull::new_unchecked(Group::static_empty().as_ptr().cast_mut().cast())
1436+
NonNull::new_unchecked(Group::static_empty().as_ptr() as *mut _)
14371437
},
14381438
bucket_mask: 0,
14391439
items: 0,

0 commit comments

Comments
 (0)