Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
force newer bytemuck
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Nov 6, 2024
1 parent ad6be22 commit 36f9cf7
Show file tree
Hide file tree
Showing 4 changed files with 442 additions and 282 deletions.
47 changes: 27 additions & 20 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ name = "toktrie"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
anyhow = "1.0.75"
bytemuck = "1.16.0"
bytemuck_derive = "1.6.0"
bytemuck = "1.19.0"
bytemuck_derive = "1.8.0"
rustc-hash = { version = "2.0.0" }
2 changes: 1 addition & 1 deletion core/src/bytes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::mem::size_of;

use anyhow::{anyhow, Result};
use bytemuck::{NoUninit, Pod};
use bytemuck_derive::Zeroable;
use bytemuck_derive::{Pod, Zeroable};

#[derive(Clone, Copy, PartialEq, Eq, Debug, Zeroable, Pod)]
#[repr(C)]
Expand Down
Loading

0 comments on commit 36f9cf7

Please sign in to comment.