Skip to content

Commit

Permalink
Remove the, now useless, bytemuck dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Nov 28, 2023
1 parent 22f4417 commit d6b75bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion heed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ edition = "2021"

[dependencies]
bitflags = { version = "2.3.3", features = ["serde"] }
bytemuck = "1.12.3"
byteorder = { version = "1.4.3", default-features = false }
heed-traits = { version = "0.20.0-alpha.9", path = "../heed-traits" }
heed-types = { version = "0.20.0-alpha.9", default-features = false, path = "../heed-types" }
Expand Down
2 changes: 1 addition & 1 deletion heed/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ use std::ffi::CStr;
use std::{error, fmt, io, mem, result};

use heed_traits as traits;
pub use {bytemuck, byteorder, heed_types as types};
pub use {byteorder, heed_types as types};

use self::cursor::{RoCursor, RwCursor};
pub use self::database::{Database, DatabaseOpenOptions};
Expand Down

0 comments on commit d6b75bc

Please sign in to comment.